game init

This commit is contained in:
Anthony Stirling
2023-04-29 22:26:16 +01:00
parent bcb4594afa
commit 6b0fedfabf
3 changed files with 351 additions and 0 deletions

View File

@@ -14,6 +14,13 @@ public class GeneralWebController {
model.addAttribute("currentPage", "merge-pdfs");
return "merge-pdfs";
}
@GetMapping("/game")
@Hidden
public String gameForm(Model model) {
model.addAttribute("currentPage", "game");
return "game";
}
@GetMapping("/multi-tool")
@Hidden
public String multiToolForm(Model model) {