30 lines
368 B
JavaScript
30 lines
368 B
JavaScript
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) |