mirror of
https://github.com/janishutz/libreevent.git
synced 2025-11-25 13:24:24 +00:00
7 lines
133 B
JavaScript
7 lines
133 B
JavaScript
const db = require( './backend/db/db.js' );
|
|
|
|
( async () => {
|
|
await db.initDB();
|
|
db.reset();
|
|
console.log( 'DONE' );
|
|
} )(); |