9 lines
154 B
Go
9 lines
154 B
Go
package access
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrProfileNotFound = errors.New("profile not found")
|
|
ErrProfileUnverified = errors.New("profile unverified")
|
|
)
|