package dailyplayerstats import ( "context" "github.com/tribalwarshelp/shared/models" ) type Usecase interface { Fetch(ctx context.Context, cfg FetchConfig) ([]*models.DailyPlayerStats, int, error) }