Fixed a simple mistake

This commit is contained in:
TheEmeraldStarr 2021-05-01 21:14:28 -07:00
parent 15b1c88788
commit cc11c39b67
2 changed files with 8 additions and 8 deletions

1
app.js
View file

@ -4,7 +4,6 @@
* MIT license: http://opensource.org/licenses/MIT * MIT license: http://opensource.org/licenses/MIT
* ----------------------------------------------- */ * ----------------------------------------------- */
const const
char_insert = require('./src/charinsert.js'),
alloy = require('./src/alloyproxy'), alloy = require('./src/alloyproxy'),
path = require('path'), path = require('path'),
config = require('./config.json'), config = require('./config.json'),

View file

@ -16,6 +16,7 @@
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"express": "^4.17.1", "express": "^4.17.1",
"mime-types": "^2.1.27" "mime-types": "^2.1.27",
"ws": "^7.4.0"
} }
} }