mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-11 13:14:06 +01:00
7 lines
196 B
TypeScript
7 lines
196 B
TypeScript
|
import { MongoDatabase } from "lambert-db";
|
||
|
|
||
|
// TODO: load url from config
|
||
|
const db = new MongoDatabase("mongodb://127.0.0.1:27017/lambert?readPreference=secondaryPreferred");
|
||
|
|
||
|
export default db;
|