jokes-bapak2/api/core/schema/err.go

11 lines
179 B
Go

package schema
import "errors"
var ErrNotFound = errors.New("record not found")
var ErrEmpty = errors.New("record is empty")
type Error struct {
Error string `json:"error"`
}