hydra/src/main/level/sublevels/downloads.ts
2025-01-20 10:09:49 +00:00

11 lines
234 B
TypeScript

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