Move index.js

This commit is contained in:
1computer1 2019-03-12 12:31:45 -04:00
parent 8962ac52e9
commit 53709480fe
2 changed files with 2 additions and 2 deletions

View file

@ -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": {

View file

@ -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!'));