13 lines
265 B
Go
13 lines
265 B
Go
package league
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/SamuelTariku/FortuneBet-Backend/internal/domain"
|
|
)
|
|
|
|
type Service interface {
|
|
GetAllLeagues(ctx context.Context) ([]domain.League, error)
|
|
SetLeagueActive(ctx context.Context, leagueId int64, isActive bool) error
|
|
}
|