1 |
/** |
2 |
* This file is part of SudoBot. |
3 |
* |
4 |
* Copyright (C) 2021-2023 OSN Developers. |
5 |
* |
6 |
* SudoBot is free software; you can redistribute it and/or modify it |
7 |
* under the terms of the GNU Affero General Public License as published by |
8 |
* the Free Software Foundation, either version 3 of the License, or |
9 |
* (at your option) any later version. |
10 |
* |
11 |
* SudoBot is distributed in the hope that it will be useful, but |
12 |
* WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
* GNU Affero General Public License for more details. |
15 |
* |
16 |
* You should have received a copy of the GNU Affero General Public License |
17 |
* along with SudoBot. If not, see <https://www.gnu.org/licenses/>. |
18 |
*/ |
19 |
import "reflect-metadata"; |
20 |
|
21 |
import { GatewayIntentBits, Partials } from "discord.js"; |
22 |
import "dotenv/config"; |
23 |
import Client from "./core/Client"; |
24 |
|
25 |
const intents = [ |
26 |
GatewayIntentBits.Guilds, |
27 |
GatewayIntentBits.MessageContent, |
28 |
GatewayIntentBits.GuildMessages, |
29 |
GatewayIntentBits.GuildMembers, |
30 |
GatewayIntentBits.GuildMessageReactions, |
31 |
GatewayIntentBits.GuildModeration, |
32 |
GatewayIntentBits.GuildEmojisAndStickers, |
33 |
GatewayIntentBits.GuildPresences, |
34 |
GatewayIntentBits.GuildInvites |
35 |
]; |
36 |
|
37 |
const partials = [Partials.Channel]; |
38 |
|
39 |
export const client = new Client({ |
40 |
intents, |
41 |
partials |
42 |
}); |
43 |
|
44 |
(async () => { |
45 |
await client.boot(); |
46 |
await client.loadEvents(); |
47 |
await client.loadCommands(); |
48 |
|
49 |
if (process.env.SERVER_ONLY_MODE) { |
50 |
await client.server.boot(); |
51 |
await client.server.start(); |
52 |
} else { |
53 |
await client.login(process.env.TOKEN); |
54 |
} |
55 |
})(); |