Add fm set username command

Beginning of the command. Can't do anything other than setting and
updating your lastfm username.
This commit is contained in:
SileNce5k 2024-03-04 12:01:11 +01:00
parent bdc08b3153
commit 8c02dc5517
No known key found for this signature in database
GPG key ID: 961132EB78C8915F
4 changed files with 109 additions and 0 deletions

View file

@ -17,6 +17,8 @@ async function checkAndConvertJSONToSQL(){
}
}
const createDatabaseTables = require('./server/createDatabaseTables');
const createLastfmTable = require('./server/createLastfmTable');
createLastfmTable();
checkAndConvertJSONToSQL();
const Discord = require('discord.js');
const client = new Discord.Client({ intents: [Discord.Intents.FLAGS.GUILDS, Discord.Intents.FLAGS.GUILD_MESSAGES, Discord.Intents.FLAGS.GUILD_PRESENCES] });