package merch type service struct { repo Repository } func newService(repo Repository) *service { return &service{ repo: repo, } }