10 lines
172 B
Go
10 lines
172 B
Go
package notifications
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/tech/sendico/pkg/model"
|
|
)
|
|
|
|
type InvitationHandler = func(context.Context, *model.Account, *model.Invitation) error
|