Add whitelist and chat (LLM) feature
Some checks failed
CI / CI (push) Has been cancelled

This commit is contained in:
SileNce5k 2025-04-30 11:35:32 +02:00
parent 1fd5f6cc6a
commit bb562be042
Signed by: SileNce
GPG key ID: B0A142BB4291B204
4 changed files with 137 additions and 0 deletions

View file

@ -18,6 +18,8 @@ async function checkAndConvertJSONToSQL(){
}
const createDatabaseTables = require('./server/createDatabaseTables');
const createLastfmTable = require('./server/createLastfmTable');
const createWhitelistTable = require('./server/createWhitelistTable.js')
createWhitelistTable();
createLastfmTable();
checkAndConvertJSONToSQL();
const { Collection, Client, GatewayIntentBits, Partials } = require('discord.js');