Lint stuff

This commit is contained in:
Veeck
2020-05-25 18:57:15 +02:00
committed by rejas
parent 8c319903dd
commit 13073bc98d
8 changed files with 63 additions and 56 deletions

View File

@@ -1,7 +1,7 @@
const app = require("../js/app.js");
const Log = require("../js/logger.js");
app.start(function(config) {
app.start(function (config) {
var bindAddress = config.address ? config.address : "localhost";
var httpType = config.useHttps ? "https" : "http";
Log.log("\nReady to go! Please point your browser to: " + httpType + "://" + bindAddress + ":" + config.port);