discord-jellyfin-bot/index.js

18 lines
305 B
JavaScript
Raw Normal View History

2020-09-04 05:10:35 +02:00
'use strict';
const DISCORD = require('discord.js');
const JELLYFIN_CLIENT = require('jellyfin-apiclient');
const CONFIG = require('./config.json');
const DISCORD_CLIENT = new DISCORD.Client();
client.on('ready', () => {
console.log('connected to Discord');
});
client.login('your token here');