feat: Create collection file for routes

This commit is contained in:
Björn Benouarets
2025-08-11 22:15:32 +02:00
commit f00ecb8155
14 changed files with 482 additions and 0 deletions

13
server/response.go Normal file
View File

@@ -0,0 +1,13 @@
package server
type HealthCheckResponse struct {
Database bool `json:"database"`
API bool `json:"api"`
Status string `json:"status"`
}
type InternalServerErrorResponse struct {
Status string `json:"status"`
Code int `json:"code"`
Message string `json:"message"`
}