This repository has been archived on 2025-09-25. You can view files and clone it, but cannot push or open issues or pull requests.
secret-santa/internal/types/response.go

9 lines
137 B
Go

package types
type JsonResponse[T any] struct {
Data T `json:"data"`
}
type ErrorResponse struct {
Message string `json:"message"`
}