package stats import "github.com/SamuelTariku/FortuneBet-Backend/internal/ports" type Service struct { companyStatStore ports.CompanyStatStore eventStatStore ports.EventStatStore } func NewService(companyStatStore ports.CompanyStatStore, eventStatStore ports.EventStatStore) *Service { return &Service{ companyStatStore: companyStatStore, eventStatStore: eventStatStore, } }