mirror of
https://github.com/danbulant/discord.js
synced 2026-05-24 20:42:27 +00:00
11 lines
No EOL
234 B
JavaScript
11 lines
No EOL
234 B
JavaScript
var Discord = require("../lib/index.js");
|
|
var Auth = require("./auth.json");
|
|
var mybot = new Discord.Client();
|
|
|
|
mybot.login(Auth.email, Auth.password, function(err, res){
|
|
|
|
});
|
|
|
|
mybot.on("ready", function(){
|
|
console.log("Ready!");
|
|
}) |