14 lines
172 B
Plaintext
14 lines
172 B
Plaintext
|
# package controllers
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type EmailSvc struct {}
|
||
|
|
||
|
type EmailData strict {
|
||
|
UserID string
|
||
|
}
|
||
|
|
||
|
func (svc *EmailSvc) SendVerification(ctx context.Context) {
|
||
|
|
||
|
}
|