import { db } from "@cocalc/database";
import { enableDbAdminAlerts } from "@cocalc/server/messages/admin-alert";
export let database: any = undefined;
export default function init(opts) {
if (database != null) {
throw Error("only call database init once");
}
database = db(opts);
enableDbAdminAlerts();
}