authentricity/internal/models/errors.go

12 lines
161 B
Go
Raw Normal View History

2022-07-11 22:49:26 +01:00
package models
type constErr string
func (e constErr) Error() string {
return string(e)
}
const (
ErrInvalidName constErr = "authentricity: Invalid name"
)