salty-ircd/source/ircd/app.d

11 lines
112 B
D
Raw Permalink Normal View History

2017-03-11 06:14:48 +01:00
module ircd.app;
2017-03-11 17:45:49 +01:00
import ircd.server;
2017-03-11 06:14:48 +01:00
shared static this()
{
2017-03-11 17:45:49 +01:00
auto server = new Server();
server.listen();
2017-03-11 06:14:48 +01:00
}