12345678910111213141516171819202122232425262728 |
- using Newtonsoft.Json;
- using Newtonsoft.Json.Linq;
- using NLog;
- using OCPPServer.Handler;
- using OCPPServer.Protocol;
- using OCPPServer.SubProtocol;
- using SuperSocket.SocketBase;
- using SuperWebSocket;
- using SuperWebSocket.SubProtocol;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading;
- using System.Threading.Tasks;
- using System.Xml.Linq;
- namespace OCPPServer
- {
- internal class Server
- {
- private static void Main(string[] args)
- {
- WSServer s = new WSServer();
- Console.WriteLine("Starting Server...");
- s.Start();
- }
- }
- }
|