X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=lmno.js;h=8e84473e148abf29d777dc7965941104d0bcd72d;hb=d04124365041fb3d9606a0aa56b49a2147565038;hp=61c7f5cce5eed2f4cb84c1dd75d4e779ff9888b1;hpb=ee078f73ebf00c2bb769de5e7502824b37b96535;p=empires-server diff --git a/lmno.js b/lmno.js index 61c7f5c..8e84473 100644 --- a/lmno.js +++ b/lmno.js @@ -48,6 +48,7 @@ nunjucks.configure("templates", { /* Load each of our game mini-apps. */ var empires = require("./empires"); +var tictactoe = require("./tictactoe"); class LMNO { constructor() { @@ -240,6 +241,7 @@ app.get('/admin/', auth_admin, (request, response) => { /* Mount sub apps. only _after_ we have done all the middleware we need. */ app.use('/empires/[a-zA-Z0-9]{4}/', empires.app); +app.use('/tictactoe/[a-zA-Z0-9]{4}/', tictactoe.app); app.listen(4000, function () { console.log('LMNO server listening on localhost:4000');