mirror of
https://github.com/SrIzan10/ezbd.git
synced 2026-06-06 00:56:57 +00:00
6 lines
167 B
TypeScript
6 lines
167 B
TypeScript
import { createStorage } from "unstorage";
|
|
import fsDriver from "unstorage/drivers/fs";
|
|
|
|
export const kv = createStorage({
|
|
driver: fsDriver({ base: "./db/kv" }),
|
|
}); |