hydra/src/main/level/sublevels/game-shop-cache.ts
2025-01-16 02:30:09 +00:00

11 lines
249 B
TypeScript

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