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