Files
hydra/src/main/level/sublevels/download-sources.ts
2025-10-21 04:18:11 +01:00

11 lines
257 B
TypeScript

import { db } from "../level";
import { levelKeys } from "./keys";
import type { DownloadSource } from "@types";
export const downloadSourcesSublevel = db.sublevel<string, DownloadSource>(
levelKeys.downloadSources,
{
valueEncoding: "json",
}
);