diff options
Diffstat (limited to '')
-rw-r--r-- | controllers/play.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/controllers/play.js b/controllers/play.js new file mode 100644 index 0000000..c00d15d --- /dev/null +++ b/controllers/play.js @@ -0,0 +1,9 @@ +function makeController(req, cwdata) { + return { + title: "Jouer", + user: req.session.user, + CWDATA: cwdata, + }; +} + +export default makeController; |