Merge remote-tracking branch 'refs/remotes/origin/main'

This commit is contained in:
Samuel Tariku 2025-09-24 21:33:10 +03:00
commit 9b56131f79

View File

@ -13,4 +13,5 @@ type EnetPulseService interface {
FetchTournaments(ctx context.Context, templateID string) error FetchTournaments(ctx context.Context, templateID string) error
FetchTournamentParticipants(ctx context.Context, tournamentID string) error FetchTournamentParticipants(ctx context.Context, tournamentID string) error
FetchPreMatchOdds(ctx context.Context, params domain.PreMatchOddsRequest) (*domain.PreMatchOddsResponse, error) FetchPreMatchOdds(ctx context.Context, params domain.PreMatchOddsRequest) (*domain.PreMatchOddsResponse, error)
FetchCountryFlag(ctx context.Context, countryFK int64) (*domain.ImageResponse, error)
} }