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.
23 lines
425 B
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()
|
|
{
|
|
}
|
|
}
|
|
}
|