Sessions 5-7a: 955 tests, deployment ready

This commit is contained in:
Kev
2026-06-08 18:35:13 -04:00
parent 06b82624a2
commit 1fa04dc776
371 changed files with 49366 additions and 955 deletions
@@ -0,0 +1,16 @@
/**
* 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 };