mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
698 B
33 lines
698 B
using ZeroLevel.Services.Applications;
|
|
|
|
namespace ZeroLevel.Discovery
|
|
{
|
|
public sealed class DiscoveryService
|
|
: BaseWindowsService, IZeroService
|
|
{
|
|
public DiscoveryService()
|
|
: base("Discovery")
|
|
{
|
|
}
|
|
|
|
public override void PauseAction()
|
|
{
|
|
}
|
|
|
|
public override void ResumeAction()
|
|
{
|
|
}
|
|
|
|
public override void StartAction()
|
|
{
|
|
Injector.Default.Register<RouteTable>(new RouteTable());
|
|
var port = Configuration.Default.First<int>("port");
|
|
Startup.StartWebPanel(port, false);
|
|
}
|
|
|
|
public override void StopAction()
|
|
{
|
|
}
|
|
}
|
|
}
|