using Bumblebee; using System; namespace ApiGateway { internal class Program { private static Gateway gateway; private static void Main(string[] args) { gateway = new Gateway(); gateway.HttpOptions(o => { o.Port = 80;//http://localhost/__system/bumblebee/routes.html o.LogToConsole = true; o.LogLevel = BeetleX.EventArgs.LogType.Error; }); gateway.Open(); gateway.LoadPlugin(typeof(Bumblebee.Configuration.Management).Assembly); Console.Read(); } } }