blob: ebd8c21b31fc9a379dfdd304edd6b91384003cc9 (
plain)
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
|
// Credentials
export const credentials = {
botToken: 'token here'
};
// Options
export const owners = [
'322862723090219008', //IRONM00N
'464970779944157204', //TrashCan
'487443883127472129' //Tyman
];
export const prefix = '-' as string;
export const dev = true as boolean;
export const devGuild = '695310188764332072' as string;
export const channels = {
log: 'id here',
error: 'id here',
dm: 'id here',
command: 'id here'
};
// Database specific
export const db = {
host: 'localhost',
port: 5432,
username: 'username here',
password: 'password here'
};
// Logging
export const logging: { info: boolean; verbose: boolean } = {
info: false,
verbose: true
};
|