16 lines
386 B
Go
16 lines
386 B
Go
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,
|
|
}
|
|
}
|