-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- now supports all versions: 1.0, 1.1, and 1.2. - updated to version 1.0.0.
- Loading branch information
1 parent
31069c6
commit c9cb19a
Showing
7 changed files
with
126 additions
and
93 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules/ |
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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
var API_v1_0 = require('./API_v1_0'); | ||
var util = require('util'); | ||
|
||
// Public Functions | ||
var API_v1_1 = function(v, storeT, storeL) { | ||
API_v1_0.apply(this, arguments); | ||
|
||
this.baseUrl = "https://api.mysportsfeeds.com/v1.1/pull"; | ||
} | ||
|
||
util.inherits(API_v1_1, API_v1_0); | ||
|
||
exports = module.exports = API_v1_1; |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
var API_v1_1 = require('./API_v1_1'); | ||
var util = require('util'); | ||
|
||
// Public Functions | ||
var API_v1_2 = function(v, storeT, storeL) { | ||
API_v1_1.apply(this, arguments); | ||
|
||
this.baseUrl = "https://api.mysportsfeeds.com/v1.2/pull"; | ||
} | ||
|
||
util.inherits(API_v1_2, API_v1_1); | ||
|
||
exports = module.exports = API_v1_2; |
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