mirror of
https://github.com/aljazceru/ditto.git
synced 2025-12-28 18:54:27 +01:00
8 lines
151 B
TypeScript
8 lines
151 B
TypeScript
import { lmdb } from '@/deps.ts';
|
|
|
|
const db = lmdb.open('db', {});
|
|
|
|
const gossipDB = db.openDB('gossip', { dupSort: true });
|
|
|
|
export { db, gossipDB };
|