Initial commit

This commit is contained in:
Alan Bridgeman 2025-02-17 16:19:35 -06:00
commit 9277a804bb
18 changed files with 851 additions and 0 deletions

9
src/routes/HomeRoutes.ts Normal file
View file

@ -0,0 +1,9 @@
import { Request, Response } from 'express';
import { Controller, GET, Page, BaseController } from '@BridgemanAccessible/ba-web-framework';
@Controller()
export class HomeRoutes extends BaseController {
@Page('Home', 'index.ejs')
@GET('/')
async home(req: Request, res: Response) {}
}