mirror of https://github.com/clickscodes/nucleus
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
560 B
24 lines
560 B
declare const config: {
|
|
developmentToken: string,
|
|
developmentGuildID: string,
|
|
enableDevelopment: boolean,
|
|
token: string,
|
|
managementGuildID: string,
|
|
owners: string[],
|
|
commandsFolder: string,
|
|
eventsFolder: string,
|
|
messageContextFolder: string,
|
|
userContextFolder: string,
|
|
verifySecret: string,
|
|
mongoOptions: {
|
|
username: string,
|
|
password: string,
|
|
database: string,
|
|
host: string,
|
|
authSource: string
|
|
},
|
|
baseUrl: string,
|
|
rapidApiKey: string
|
|
};
|
|
|
|
export default config; |