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,41 @@
package authinfra
type (
PasswordResetOTPCreateRequest struct {
Email string
}
PasswordResetOTPCreateResponse struct {
OTP string
}
)
type (
ValidatePasswordResetOTPRequest struct {
Email string
OTP string
}
ValidatePasswordResetOTPResponse struct {
Token string
}
)
type (
ValidatePasswordResetTokenRequest struct {
Email string
Token string
}
ValidatePasswordResetTokenResponse struct {
}
)
type (
Type uint
Config any
)
const (
CacheAuthInfrastructureServiceType Type = iota
)