Files

9 lines
154 B
Go
Raw Permalink Normal View History

2026-05-22 20:26:11 -04:00
package access
import "errors"
var (
ErrProfileNotFound = errors.New("profile not found")
ErrProfileUnverified = errors.New("profile unverified")
)