sockscape/server/Entrypoint.cs

21 lines
476 B
C#
Raw Normal View History

2017-04-25 21:01:41 +00:00
using System;
using System.Collections.Generic;
using System.Data.SQLite;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CircleScape.DAL;
2017-04-21 21:04:03 +00:00
namespace CircleScape {
class Entrypoint {
static void Main(string[] args) {
2017-05-04 12:21:27 +00:00
var server = new Kneesocks.Server<PendingConnection>(6770, PoolManager.Pool);
server.Start();
while(true) {
2017-05-04 21:09:38 +00:00
// logic processing loop
2017-05-04 12:21:27 +00:00
}
2017-04-21 21:04:03 +00:00
}
}
}