feat(index): add character search screen

This commit is contained in:
Axel Cocat 2022-01-19 21:44:14 +01:00
parent 4d63acf21d
commit 46f3f24c4f
9 changed files with 449 additions and 5 deletions

View file

@ -65,6 +65,7 @@ export class Armory {
const indexController = new IndexController(this);
app.get("/", indexController.index.bind(indexController));
app.get("/search", indexController.search.bind(indexController));
const charsController = new CharacterController(this);
await charsController.load();