Embezzle/index.js

30 lines
368 B
JavaScript
Raw Normal View History

2020-02-15 10:01:01 +00:00
const express = require('express')
const app = express()
//top level
//get game list
//get game details
//post register player
//get an empty game made
//gamelevel
// get this game players
// get charity details
// get board funding details (how much money team has to work with)
// post distribution
// post accusation
// get winner
app.listen(3000)