Documentation ¶
Index ¶
- Variables
- type AccountService
- func (a *AccountService) Create(ctx context.Context, account domain.Account) error
- func (a *AccountService) Delete(ctx context.Context, account domain.Account) error
- func (a *AccountService) Get(uuid u.UUID) (domain.Account, error)
- func (a *AccountService) Put(ctx context.Context, account domain.Account) error
- type AccountServiceParameters
Constants ¶
This section is empty.
Variables ¶
View Source
var Module = fx.Options( fx.Provide(NewAccountService), )
Functions ¶
This section is empty.
Types ¶
type AccountService ¶
type AccountService struct {
// contains filtered or unexported fields
}
AccountService encapsulates the various operations our application offers for user accounts.
func NewAccountService ¶
func NewAccountService( parameters AccountServiceParameters) AccountService
Click to show internal directories.
Click to hide internal directories.