package bodyGeneric type CustomResponse[T any] struct { Success bool `json:"success"` Status int `json:"status"` Message string `json:"message"` Data T `json:"data"` }