diff --git a/package.json b/package.json index 31d8f91..0d58ca4 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "comp_iler", "version": "1.0.0", "description": "Sandboxed eval bot", - "main": "index.js", + "main": "src/index.js", "author": "1Computer1", "license": "MIT", "dependencies": { diff --git a/index.js b/src/index.js similarity index 72% rename from index.js rename to src/index.js index e0d297c..399d47f 100644 --- a/index.js +++ b/src/index.js @@ -1,4 +1,4 @@ -const CompilerClient = require('./src/struct/CompilerClient'); +const CompilerClient = require('./struct/CompilerClient'); const config = require('./config.json'); const client = new CompilerClient(config); client.once('ready', () => console.log('Comp_iler ready to go!'));