15 lines
193 B
Go
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
|
|
}
|