UNPKG

private-key-manager

Version:
7 lines (6 loc) 230 B
import { Level } from 'level'; import { getDatabaseDir } from './utils/fileUtils.js'; export function getDbInstance() { return new Level(getDatabaseDir(), { valueEncoding: 'json' }); } export const dbClient = getDbInstance();