This commit is contained in:
Alex Shevchuk
2025-08-18 17:12:04 +03:00
commit d84487d238
157 changed files with 160686 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package authinfra
import "errors"
var (
ErrInvalidConfig = errors.New("invalid config")
ErrUnknownAuthInfrastructureServiceType = errors.New("unknown auth infrastructure service type")
ErrBadRequest = errors.New("bad request")
ErrUnauthorized = errors.New("unauthorized")
ErrNotFound = errors.New("not found")
ErrInternal = errors.New("internal error")
)