Files
koring-space/lib/database.ts
T

8 lines
158 B
TypeScript
Raw Normal View History

2026-07-10 22:38:58 +08:00
import Datastore from "@seald-io/nedb";
const useNewsStore = new Datastore({
filename: "./database/news.db",
autoload: true
});
export { useNewsStore };