This commit is contained in:
Louis Knight-Webb
2025-06-14 15:14:08 -04:00
commit 563994934d
29 changed files with 5748 additions and 0 deletions

14
shared/types.ts Normal file
View File

@@ -0,0 +1,14 @@
// Shared types between frontend and backend
export interface ApiResponse<T> {
success: boolean
data?: T
message?: string
}
export interface HelloResponse {
message: string
}
export interface HelloQuery {
name?: string
}