9 lines
105 B
Go
9 lines
105 B
Go
package odds
|
|
|
|
import "context"
|
|
|
|
type Service interface {
|
|
FetchNonLiveOdds(ctx context.Context) error
|
|
|
|
}
|