This commit is contained in:
2026-07-10 22:38:58 +08:00
commit 34c7cf34fd
56 changed files with 16425 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import Datastore from "@seald-io/nedb";
const useNewsStore = new Datastore({
filename: "./database/news.db",
autoload: true
});
export { useNewsStore };
+6
View File
@@ -0,0 +1,6 @@
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}