This commit is contained in:
2023-08-07 10:14:38 -04:00
parent a30b1769b3
commit 5dd3fa9451
18 changed files with 548 additions and 276 deletions

6
Handlers/response.go Normal file
View File

@@ -0,0 +1,6 @@
package Handlers
type Response[T any] struct {
Status string `json:"status"`
Payload T `json:"payload"`
}