-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
25 lines (19 loc) · 821 Bytes
/
index.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
25
require("dotenv").config();
const Bot = require("./src/struct/Bot");
require('http').createServer((req, res) => res.end(`
|-----------------------------------------|
| Informations |
|-----------------------------------------|
|• Alive: 24/7 |
|-----------------------------------------|
|• Author: Atreya#2401 |
|-----------------------------------------|
|• Server: https://discord.gg/gU7XAxTpX5 |
|-----------------------------------------|
|• Github: https://github.com/diwasatreya |
|-----------------------------------------|
|• License: Apache License 2.0 |
|-----------------------------------------|
`)).listen(3000)
const client = new Bot();
(async () => await client.start(process.env.TOKEN))();