This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
bactdb/errors/auth.go
2015-10-05 10:34:07 -07:00

7 lines
94 B
Go

package errors
import "errors"
var (
ExpiredToken = errors.New("this token has expired")
)