CodeLiturgy.Dashboard/BlueWest.Api.Gateway/Program.cs

11 lines
347 B
C#
Raw Normal View History

2022-08-19 19:47:35 +03:00
// See https://aka.ms/new-console-template for more information
using BlueWest.Core;
using BlueWest.Tools;
EventManager EventManager = new EventManager(new Dictionary<Type, List<EventListenerBase>>(10000));
ThreadServer _threadServer;
System.Threading.Thread.Sleep(2500);
_threadServer = new ThreadServer(EventManager);
_threadServer.Init();