diff --git a/source/server.d b/source/server.d index 47ca253..f6aefe3 100644 --- a/source/server.d +++ b/source/server.d @@ -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()