11 lines
180 B
Go
11 lines
180 B
Go
package types
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrInternal = errors.New("internal server error")
|
|
ErrUnauthorized = errors.New("You are not authorized to perform this action.")
|
|
)
|