[feat] Basic Hono+Drizzle Server

This commit is contained in:
2026-06-07 20:30:11 +08:00
Unverified
parent 4541f8dca6
commit 9e506c06fe
12 changed files with 961 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
import { sqliteTable, text } from "drizzle-orm/sqlite-core";
export const metasTable = sqliteTable("metas", {
key: text().primaryKey(),
value: text(),
});