-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.example.ts
39 lines (37 loc) · 962 Bytes
/
config.example.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import IConfiguration from "./src/structures/IConfiguration";
const config: IConfiguration = {
enable: {
commandsLogs: false,
commandExecutionTimeLogs: false,
slashCommandsLogs: false,
slashCommandExecutionTimeLogs: false,
buttonInteractionLogs: false,
menuInteractionLogs: false,
modalInteractionLogs: false,
slashCommandsAutocompletionLogs: false,
discordApiLogging: false,
refreshSlashCommandsOnStart: false,
refreshSlashCommandsOnNewGuild: false,
presence: false,
presenceLogs: true
},
owners: [],
prefixes: [],
allowBotMentionAsPrefix: false,
developmentMode: {
enabled: false,
channels: [],
guild: { id: "" }
},
logger: {
output: {
enabled: false,
raw: false
}
},
presence: {
interval: 0,
list: []
}
};
export default config;