-
Notifications
You must be signed in to change notification settings - Fork 3
/
Luna.js
24 lines (15 loc) · 1.05 KB
/
Luna.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* __ ____ __
/ / __ ______ ____ _/ __ )____ / /_
/ / / / / / __ \/ __ `/ __ / __ \/ __/
/ /___/ /_/ / / / / /_/ / /_/ / /_/ / /_
/_____/\__,_/_/ /_/\__,_/_____/\____/\__/
— An adorable Discord bot. <3
—— Free, Open Source and Cross Platform */
// ██████ Integrations █████████████████████████████████████████████████████████
const Luna = require("./Structures/Luna");
// ██████ Initialization ███████████████████████████████████████████████████████
const client = new Luna();
client.start();
process.on("rejectionHandled" , ( err ) => console.error( err ) );
process.on("unhandledRejection" , ( err ) => console.error( err ) );
process.on("uncaughtException" , ( err ) => console.error( err ) );