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