about summary refs log tree commit diff stats
path: root/index.js
blob: 0d13674734838991bcdfa1cf3f43c1b3bed364e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import { config } from 'dotenv'
config()

import { Client } from 'discord.js'
const client = new Client()

client.once('ready', () => {
  console.log('ByTheWay, your bot is ready')
})

client.login(process.env.TOKEN)