Files
open-ticket/core/dynamicdatabase/storage.js
T
2022-08-10 19:35:10 +02:00

13 lines
350 B
JavaScript

//Do not change this without knowing what you are doing!!
const databaseFile = "local"
//Do not change this without knowing what you are doing!!
try {
var db = require("./dynamicfiles/local")
}catch{
console.log("I couldn't find the database file! (location: ./core/dynamicdatabase/storage.js:2)")
process.exit(1)
}
module.exports = db