summaryrefslogtreecommitdiff
path: root/routes/play.js
blob: 5e904c4f56dfe46c40a0d5f6e932e9d245a46969 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import express from "express";

const router = express.Router();

router.get("/", (req, res) => {
	const CWDATA = {
		board: [
			[ "", "", "", "", "","", "", "", "", "","", "", "", "", "" ],
			[ "", "", "", "", "","", "", "", "", "","", "", "", "", "" ],
			[ "", "", "", "", "","", "", "", "", "","", "", "", "", "" ],
			[ "", "", "", "", "","", "", "", "", "","", "", "", "", "" ],
			[ "", "", "", "", "","", "", "", "", "","", "", "", "", "" ],
			[ "", "", "", "", "","", "", "", "", "","", "", "", "", "" ],
			[ "", "", "", "", "","", "", "", "", "","", "", "", "", "" ],
			[ "", "", "", "", "","", "", "T", "E", "S","T", "", "", "", "" ],
			[ "", "", "", "", "","", "", "", "", "","", "", "", "", "" ],
			[ "", "", "", "", "","", "", "", "", "","", "", "", "", "" ],
			[ "", "", "", "", "","", "", "", "", "","", "", "", "", "" ],
			[ "", "", "", "", "","", "", "", "", "","", "", "", "", "" ],
			[ "", "", "", "", "","", "", "", "", "","", "", "", "", "" ],
			[ "", "", "", "", "","", "", "", "", "","", "", "", "", "" ],
			[ "", "", "", "", "","", "", "", "", "","", "", "", "", "" ]
		],
		letters: [ "A", "B", "C", "D", "E", "F", "JOKER" ]
	};
	return res.render("play", {CWDATA: CWDATA, title: "Jouer"});
});

export default router;