()
| 11 | }; |
| 12 | |
| 13 | const getPositions = async () => { |
| 14 | let positions = await db.any(`SELECT DISTINCT name, abbreviation FROM draft_position ORDER BY name`); |
| 15 | |
| 16 | return positions; |
| 17 | }; |
| 18 | |
| 19 | const getPicks = async (year, team, school, conference, position) => { |
| 20 | const filters = []; |
nothing calls this directly
no outgoing calls
no test coverage detected