blob: 2da137492b98335731bb933227dbea258ad74727 (
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
|
// 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 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'
};
|