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

15 lines
193 B
Go

package utils
type Error struct {
Type string
Message string
Code string
}
type ValidationError struct {
Type string
Message string
Code string
Fields map[string]string
}