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.
35 lines
956 B
35 lines
956 B
using Newtonsoft.Json;
|
|
using System;
|
|
using ZeroLevel;
|
|
using ZeroLevel.Logging;
|
|
|
|
namespace TestApp
|
|
{
|
|
public class TestQuery
|
|
{
|
|
public string Name { get; set; }
|
|
public int Age { get; set; }
|
|
public string[] Roles { get; set; }
|
|
}
|
|
|
|
internal static class Program
|
|
{
|
|
private static string Serialize(object instance)
|
|
{
|
|
return JsonConvert.SerializeObject(instance);
|
|
}
|
|
|
|
private static void Main(string[] args)
|
|
{
|
|
Configuration.Save(Configuration.ReadFromApplicationConfig());
|
|
Bootstrap.Startup<MyService>(args,
|
|
() => Configuration.ReadSetFromIniFile("config.ini"))
|
|
.EnableConsoleLog(LogLevel.System | LogLevel.FullDebug)
|
|
//.UseDiscovery()
|
|
.Run()
|
|
.WaitWhileStatus(ZeroServiceStatus.Running)
|
|
.Stop();
|
|
Bootstrap.Shutdown();
|
|
}
|
|
}
|
|
} |