blob: 792f634b383e99cfdac369d34ffccdcfa4def6f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
from jfr_playoff.data.info import ResultInfoClient
class TournamentInfoClient(ResultInfoClient):
def get_results_link(self, suffix):
raise NotImplementedError
def is_finished(self):
raise NotImplementedError
def get_tournament_results(self):
raise NotImplementedError
|