13 lines
404 B
Go
13 lines
404 B
Go
package database
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrServiceAccountAlreadyExists = errors.New("service account already exists")
|
|
ErrServiceAccountTokenNotFound = errors.New("service account token not found")
|
|
ErrInvalidTokenExpiration = errors.New("invalid SecondsToLive value")
|
|
ErrDuplicateToken = errors.New("service account token with given name already exists in the organization")
|
|
)
|