8 lines
79 B
Go
8 lines
79 B
Go
package errs
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
EmptyToken = errors.New("empty token")
|
|
)
|