insert routes to main and driver

This commit is contained in:
Adrian Zuercher
2025-04-21 09:56:30 +02:00
parent b777716aa7
commit 7b201f6e63
10 changed files with 405 additions and 121 deletions

7
models/jsonResponse.go Normal file
View File

@@ -0,0 +1,7 @@
package models
type JsonResponse struct {
Error bool `json:"error,omitempty"`
Message string `json:"message,omitempty"`
Data string `json:"data,omitempty"`
}