Files
entdb-entitlements-iOS/src/lib/engine/index.ts
T
2026-04-14 14:34:58 +00:00

9 lines
196 B
TypeScript

import type { Engine } from "./types";
import { KVEngine } from "./kv";
export async function createEngine(group: string): Promise<Engine> {
return new KVEngine(group);
}
export { KVEngine };