-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix build after removing unused code
- Loading branch information
1 parent
3f00e09
commit f50035c
Showing
3 changed files
with
3 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,8 @@ | ||
import { BetProvider } from "."; | ||
import { BetProviders, Games } from "../utils/types/common"; | ||
import { BetProviders } from "../utils/types/common"; | ||
|
||
export class OrbitProvider extends BetProvider { | ||
constructor() { | ||
super(BetProviders.ORBIT, "src/config/orbit.json"); | ||
} | ||
|
||
override getSupportedGames(): Games[] { | ||
return [ | ||
Games.FOOTBALL | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,8 @@ | ||
import { BetProvider } from "."; | ||
import { BetProviders, Games } from "../utils/types/common"; | ||
import { BetProviders } from "../utils/types/common"; | ||
|
||
export class SportPesaProvider extends BetProvider { | ||
constructor() { | ||
super(BetProviders.SPORTPESA, "src/config/sportpesa.json"); | ||
} | ||
|
||
override getSupportedGames(): Games[] { | ||
return [ | ||
Games.FOOTBALL | ||
]; | ||
} | ||
} |