Style updates

This commit is contained in:
Aaron William Po
2023-04-21 23:32:18 -04:00
parent 2dfb080d0c
commit 6a00532f75
22 changed files with 360 additions and 314 deletions

View File

@@ -0,0 +1,7 @@
import logger from '@/config/pino/logger';
import cleanDatabase from './cleanDatabase';
cleanDatabase().then(() => {
logger.info('Database cleaned');
process.exit(0);
});