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.
Zero/WebSemanticService/semantic/Semantic.API/HostService.cs

23 lines
425 B

using ZeroLevel.Services.Applications;
namespace Semantic.API
{
public class HostService :
BaseZeroService
{
public HostService() : base("Semantic api service")
{
}
protected override void StartAction()
{
// Запуск web API
Startup.Run(false, false);
}
protected override void StopAction()
{
}
}
}

Powered by TurnKey Linux.