Files
sendico/api/pkg/messaging/notifications/account/handler/interface.go
2026-02-09 16:40:52 +01:00

12 lines
239 B
Go

package notifications
import (
"context"
"github.com/tech/sendico/pkg/model"
)
type AccountHandler = func(context.Context, *model.Account, string) error
type PasswordResetHandler = func(context.Context, *model.Account, string) error