Attempting to get local and remote repos back in sync

This commit is contained in:
Alan Bridgeman 2025-06-10 08:15:24 -05:00
parent ba3978fffb
commit 1497d2d8dc
47 changed files with 5106 additions and 2539 deletions

View file

@ -0,0 +1,18 @@
import { Request, Response } from 'express';
import { Controller, GET, Page, BaseController } from '@BridgemanAccessible/ba-web-framework';
/**
* The ServicesController class is responsible for handling the services page of the site.
*/
@Controller()
export class ServicesController extends BaseController {
/**
* Route for rendering the site's services page.
*
* @param req The request object.
* @param res The response object.
*/
@Page('Services', 'services.ejs')
@GET('/services')
private services(req: Request, res: Response) {}
}