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