Files
networkException 86b68838bc Commands: Implement new command api in commands
Various improvements to the syntax of commands and their inner workings,
based on the new command system
2021-05-13 03:22:01 +02:00

7 lines
132 B
TypeScript

export interface Config {
discord: {
token: string;
commandPrefix: string,
admin: Array<string>
};
}