Some checks failed
Build Docker Image / Build-Docker-Image (push) Has been cancelled
11 lines
179 B
Go
11 lines
179 B
Go
package types
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrInternal = errors.New("internal server error")
|
|
ErrUnauthorized = errors.New("you are not authorized to perform this action")
|
|
)
|