summaryrefslogtreecommitdiff
path: root/jfr_playoff/data/match/__init__.py
blob: b397be63201435efa95b27c91fc5be6b92823e5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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


CLIENTS = [
    'jfr_playoff.data.match.jfrdb',
    'jfr_playoff.data.match.jfrhtml',
    'jfr_playoff.data.match.tcjson'
]