added sqlite

This commit is contained in:
2025-12-14 16:35:37 +11:00
parent 8e5fbf3530
commit a3e95627c8
26 changed files with 2885 additions and 3 deletions

View File

@@ -0,0 +1,3 @@
import { t, type TSchema } from "elysia";
export const __nullable__ = <T extends TSchema>(schema: T) =>
t.Union([t.Null(), schema]);