inital commit
This commit is contained in:
34
packages/server/src/route/route.ts
Normal file
34
packages/server/src/route/route.ts
Normal file
@ -0,0 +1,34 @@
|
||||
import { Request, Response } from "express";
|
||||
|
||||
type RouteType = {
|
||||
/**
|
||||
* The path to handle
|
||||
*/
|
||||
path: string;
|
||||
};
|
||||
|
||||
export abstract class Route {
|
||||
private path: string;
|
||||
|
||||
constructor({ path }: RouteType) {
|
||||
this.path = path;
|
||||
console.log(`Created route handler for ${path}`);
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle the incoming request
|
||||
*
|
||||
* @param req the request
|
||||
* @param res the response
|
||||
*/
|
||||
abstract handle(req: Request, res: Response): void;
|
||||
|
||||
/**
|
||||
* Get the path of the route
|
||||
*
|
||||
* @returns the path
|
||||
*/
|
||||
getPath() {
|
||||
return this.path;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user