17 lines
527 B
JavaScript
17 lines
527 B
JavaScript
/**
|
|
* PrizePicks adapter — STUB.
|
|
*
|
|
* PrizePicks projections come from `api.prizepicks.com` (public). They have
|
|
* one of the cleanest schemas of any DFS provider; if we light this up early
|
|
* it gives us an excellent multi-source comparison signal.
|
|
*
|
|
* TODO: implement against /projections + /players + /leagues.
|
|
*/
|
|
|
|
const SOURCE = 'prizepicks';
|
|
|
|
async function getGames(/* sport */) { return []; }
|
|
async function getPlayerProps(/* sport */) { return []; }
|
|
|
|
module.exports = { name: SOURCE, getGames, getPlayerProps };
|