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

20 lines
450 B

5 years ago
using ZeroLevel;
5 years ago
using ZeroLevel.Logging;
5 years ago
namespace Consumer
{
static class Program
{
static void Main(string[] args)
{
Bootstrap.Startup<ConsumerService>(args)
5 years ago
.EnableConsoleLog(LogLevel.FullStandart)
5 years ago
.UseDiscovery()
.Run()
.WaitWhileStatus(ZeroServiceStatus.Running)
.Stop();
Bootstrap.Shutdown();
}
}
}

Powered by TurnKey Linux.