secret-santa/internal/types/response.go

10 lines
137 B
Go
Raw Normal View History

2024-11-16 17:28:01 +01:00
package types
type JsonResponse[T any] struct {
Data T `json:"data"`
}
type ErrorResponse struct {
Message string `json:"message"`
}