- Added logging to module
- Added `startServer()` stub method
This commit is contained in:
Tristan B. Velloza Kildaire 2023-02-22 07:33:15 +02:00
parent f66227da11
commit 76fbb04d5a

View File

@ -1,5 +1,16 @@
module nostril.server;
import gogga;
// TODO: Investigate if we need the belowe (I copied it from Birchwood)
__gshared GoggaLogger logger;
__gshared static this()
{
logger = new GoggaLogger();
}
import vibe.vibe : URLRouter;
public class Server
@ -11,6 +22,10 @@ public class Server
}
public void startServer()
{
// TODO: Make call to `runApplication()`
}
public static Server createServer()