diff options
author | emkael <emkael@tlen.pl> | 2019-12-31 13:19:48 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2019-12-31 13:19:48 +0100 |
commit | 7d3a08128bcadd562e7eaa48644c830ed166c98c (patch) | |
tree | f9f3a33c67a3cf0fd85175d346c36883e02fe0bf /jfr_playoff/data/match/__init__.py | |
parent | 009c26df9ccc65e3c58f62154a63498debd8e5b3 (diff) |
Migrating JFR match results to result info client model
Diffstat (limited to 'jfr_playoff/data/match/__init__.py')
-rw-r--r-- | jfr_playoff/data/match/__init__.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/jfr_playoff/data/match/__init__.py b/jfr_playoff/data/match/__init__.py index 7db05c2..6137078 100644 --- a/jfr_playoff/data/match/__init__.py +++ b/jfr_playoff/data/match/__init__.py @@ -4,3 +4,12 @@ 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 |