initial commit
This commit is contained in:
commit
028d0390f4
18 changed files with 256638 additions and 0 deletions
15
src/armory/controllers/IndexController.ts
Normal file
15
src/armory/controllers/IndexController.ts
Normal 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",
|
||||
});
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue