1
0
Fork 0

new entry file location

refactor/models
Matthew 2020-06-29 02:36:28 -04:00
parent 0d329d99fa
commit 89b8f0b9c9
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
2 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,5 @@
export { default as Client } from './Client'; export { default as Client } from './class/Client';
// eslint-disable-next-line import/no-unresolved
export { default as config } from './config.json'; export { default as config } from './config.json';
export * from './class'; export * from './class';
export * from './commands'; export * from './commands';

4
src/main.ts Normal file
View File

@ -0,0 +1,4 @@
import { Client } from './class';
// eslint-disable-next-line no-new
new Client();