Introduce pkg/mail.Addr

Signed-off-by: Émile Ré <nemile.re@gmail.com>
This commit is contained in:
Émile Ré
2025-12-12 15:32:46 +01:00
parent cab9d6f2ed
commit c0b2a5702d
85 changed files with 842 additions and 646 deletions

View File

@@ -19,13 +19,14 @@ import (
"fmt"
"net/http"
authsvc "go.probo.inc/probo/pkg/auth"
"go.gearno.de/kit/httpserver"
authsvc "go.probo.inc/probo/pkg/auth"
"go.probo.inc/probo/pkg/mail"
)
type (
ForgetPasswordRequest struct {
Email string `json:"email"`
Email mail.Addr `json:"email"`
}
ForgetPasswordResponse struct {