initial commit

This commit is contained in:
Axel Cocat 2022-01-01 19:38:57 +01:00
commit 028d0390f4
18 changed files with 256638 additions and 0 deletions

View file

@ -0,0 +1,15 @@
import * as express from "express";
export class IndexController {
public async index(req: express.Request, res: express.Response): Promise<void> {
res.render("index.html", {
"title": "Armory",
});
}
public async character(req: express.Request, res: express.Response): Promise<void> {
res.render("character.html", {
"title": "Armory",
});
}
}