import {TicTacToe} from './tictactoe.js' let the_game = new TicTacToe(); app.get('/game/:gameid', (req, res) => { return the_game.toJson(); }) app.get('/set/:gameid/:cell', (req, res) => { the_game.set(req.params['cell']) res.json(the_game.toJson()) })