bot/src/index.ts

13 lines
256 B
TypeScript
Raw Normal View History

2020-01-13 04:10:56 +00:00
import { Client } from 'discord.js';
import { token } from './config/bot';
const lifeguard = new Client();
lifeguard
.login(token)
.then(_ =>
console.log(
`Logged in to ${lifeguard.user.username}#${lifeguard.user.discriminator}`
)
);