1
0

webserver dependency bumping (someone gives me motivation to rewrite this shit)

This commit is contained in:
labalityowo
2023-05-22 22:20:21 +07:00
parent 1f19850986
commit c1c3dc48c4
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ const fastify = require('fastify')({
});
//Accounts
fastify.register(require('fastify-mysql'), {
fastify.register(require('@fastify/mysql'), {
promise: true,
connectionString: 'mysql://root:root@localhost/account'
})