10 lines
102 B
Go
10 lines
102 B
Go
package errors
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrUnauthorized = errors.New("User is not authorized")
|
|
)
|