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/Program.cs

13 lines
244 B

using ZeroLevel;
namespace Semantic.API
{
static class Program
{
static void Main(params string[] args)
{
Bootstrap.Startup<HostService>(args, () => { Log.Backlog(100); return true; });
}
}
}

Powered by TurnKey Linux.