Files
NebulaLauncher/Nebula.Runner/App.cs

14 lines
254 B
C#
Raw Normal View History

2025-01-05 17:05:23 +03:00
using Nebula.Shared;
using Nebula.Shared.Services;
namespace Nebula.Runner;
[ServiceRegister]
public class App(DebugService debugService)
{
public void Run(string[] args)
{
debugService.Log("HELLO!!! " + string.Join(" ",args));
}
}