Files
astra-events/pkg/utils/validation.go
2023-10-13 00:42:20 +03:00

15 lines
332 B
Go

package utils
type Error struct {
Type string `json:"type"`
Message string `json:"message"`
Code string `json:"code"`
}
type ValidationError struct {
Type string `json:"type"`
Message string `json:"message"`
Code string `json:"code"`
Fields map[string]string `json:"fields"`
}