7 lines
94 B
Go
7 lines
94 B
Go
package errors
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ExpiredToken = errors.New("this token has expired")
|
|
)
|