blob: ce8f782cc013e67ae1962bcbe35b16481cea376a (
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
35
36
37
38
|
import { Snowflake } from 'discord.js';
// Credentials
export const credentials = {
token: 'Token Here',
devToken: 'Token Here',
hypixelApiKey: 'API Key Here'
};
// Options
export const owners: Snowflake[] = [
'322862723090219008', //IRONM00N
'464970779944157204', //TrashCan
'487443883127472129' //Tyman
];
export const prefix = '-' as string;
export const dev = true as boolean;
export const devGuild = '1000000000000000' as Snowflake;
export const channels: { log: Snowflake; error: Snowflake; dm: Snowflake; command: Snowflake } = {
log: '1000000000000000',
error: '1000000000000000',
dm: '1000000000000000',
command: '1000000000000000'
};
// 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
};
|