Files
test_deploy/internal/services/auth_infrastructure/domain.go
Alex Shevchuk d84487d238 1
2025-08-18 17:12:04 +03:00

42 lines
521 B
Go

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
)