This repository has been archived on 2023-08-31. You can view files and clone it, but cannot push or open issues or pull requests.
relay-plugin-registry/src/storage/index.ts

9 lines
246 B
TypeScript

import { register } from "./factory.js";
import Memory from "./backends/memory.js";
import Lmdb from "./backends/lmdb.js";
register("memory", Memory);
register("lmdb", Lmdb);
export { get as getStorage, has as hasStorage } from "./factory.js";