Yimaru-BackEnd/internal/services/odds/port.go
OneTap Technologies b90fd84aba adding prematchodd
2025-04-11 17:04:25 +03:00

15 lines
250 B
Go

package odds
import (
"context"
"github.com/SamuelTariku/FortuneBet-Backend/internal/domain"
)
type Service interface {
FetchNonLiveOdds(ctx context.Context) error
GetPrematchOdds(ctx context.Context, eventID string) ([]domain.Odd, error)
}