8 lines
89 B
Go
8 lines
89 B
Go
package token
|
|
|
|
import "fmt"
|
|
|
|
var (
|
|
ErrTokenIsRevoked = fmt.Errorf("token is revoked")
|
|
)
|