initial commit

This commit is contained in:
Zoe
2026-01-11 05:04:29 -06:00
commit 0877cc10bd
65 changed files with 5009 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import type { agents } from '~~/db/schema';
import type { messages } from '~~/db/schema';
import type { topics } from '~~/db/schema';
export type Agent = typeof agents.$inferSelect;
export type Message = typeof messages.$inferSelect;
export type Topic = typeof topics.$inferSelect;