mirror of
https://github.com/ChiChou/entdb.git
synced 2026-06-11 07:17:47 +02:00
9 lines
196 B
TypeScript
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 };
|