aboutsummaryrefslogtreecommitdiff
path: root/bot/src/bot.js
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-03-02 22:27:57 -0500
committerAndrew Lee <andrew@alee14.me>2025-03-02 22:27:57 -0500
commitcf1382d88c5e3298923c8cb243b7bc5751e68b53 (patch)
treea38351317594ed660fc80c784cdf7dbc71f5656b /bot/src/bot.js
parent1c253d25cb1d35aa987d76e07806999c562712d6 (diff)
downloadAleeBot-cf1382d88c5e3298923c8cb243b7bc5751e68b53.tar.gz
AleeBot-cf1382d88c5e3298923c8cb243b7bc5751e68b53.tar.bz2
AleeBot-cf1382d88c5e3298923c8cb243b7bc5751e68b53.zip
Ported more commands; Made embed colour a const; Cleanup
Diffstat (limited to 'bot/src/bot.js')
-rw-r--r--bot/src/bot.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/src/bot.js b/bot/src/bot.js
index 07b13a8..7f1f41a 100644
--- a/bot/src/bot.js
+++ b/bot/src/bot.js
@@ -2,12 +2,12 @@ import { Client, GatewayIntentBits } from 'discord.js';
import 'dotenv/config';
import { event } from './handlers/event.js';
import { command } from './handlers/command.js';
-import { apiServer } from '../api/server.js';
+import { apiServer } from './api/server.js';
const client = new Client({ intents: [GatewayIntentBits.Guilds] });
-command(client).then(() => console.log('[i] Command module loaded'));
-event(client).then(() => console.log('[i] Event module loaded'));
+command(client).then(() => console.log('[>] Command module loaded'));
+event(client).then(() => console.log('[>] Event module loaded'));
apiServer(client);
if (process.argv.indexOf('--beta') === -1) {