trepa/internal/accounts/service/account.go
2025-03-11 21:42:36 +00:00

11 lines
267 B
Go

package service
import "gitea.qpismont.fr/qpismont/trepa/internal/accounts/domain"
type Service struct {
repository domain.AccountRepository
}
func NewService(repository domain.AccountRepository) domain.AccountService {
return &Service{repository: repository}
}