From 991e09dd3bcd5e5cdc2c26e98553e61d3bf995f5 Mon Sep 17 00:00:00 2001 From: Tau Date: Fri, 1 Mar 2019 18:51:57 -0500 Subject: [PATCH] Rename Chunithm title server module Since we plan to support more than one game there will of course be more than one "title server". --- src/{title.js => chunithm.js} | 0 src/index.js | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/{title.js => chunithm.js} (100%) diff --git a/src/title.js b/src/chunithm.js similarity index 100% rename from src/title.js rename to src/chunithm.js diff --git a/src/index.js b/src/index.js index c8d7e04..ae3b5d6 100644 --- a/src/index.js +++ b/src/index.js @@ -6,7 +6,7 @@ const net = require('net') const aimedb = require('./aimedb') const billing = require('./billing') const startup = require('./startup') -const title = require('./title') +const chunithm = require('./chunithm') const tls = { cert: fs.readFileSync('pki/server.pem'), @@ -16,4 +16,4 @@ const tls = { net.createServer(aimedb).listen(22345) http.createServer(startup).listen(80) https.createServer(tls, billing).listen(8443) -http.createServer(title).listen(9000) +http.createServer(chunithm).listen(9000)