15 lines
250 B
Go
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)
|
|
|
|
|
|
}
|