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