forked from engineering/cloudservices
new entry file location
parent
0d329d99fa
commit
89b8f0b9c9
|
@ -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';
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
import { Client } from './class';
|
||||||
|
|
||||||
|
// eslint-disable-next-line no-new
|
||||||
|
new Client();
|
Loading…
Reference in New Issue