import { join , dirname } from "path" import { Database } from './'; export default class DatabaseStack { public db: any private root: string constructor(db: any) { this.db = null; this.root = dirname( require.main.filename ) this.init(db); } private init(db){ this.db = this.setup(db) } private setup(db: any) { return //new Database(db); } }