blob: 613707892ea6fd7cab426e45e7e0a1c696d3ade2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
from jfr_playoff.data.info import ResultInfoClient
class MatchInfoClient(ResultInfoClient):
def get_match_link(self):
raise NotImplementedError
def fetch_teams(self, teams):
raise NotImplementedError
def board_count(self):
raise NotImplementedError
def running_link(self):
raise NotImplementedError
|