diff --git a/7-git/2-git_and_github_workflow/code_example/src/controllers/api.ts b/7-git/2-git_and_github_workflow/code_example/src/controllers/api.ts index fff1f68..d4b7f55 100644 --- a/7-git/2-git_and_github_workflow/code_example/src/controllers/api.ts +++ b/7-git/2-git_and_github_workflow/code_example/src/controllers/api.ts @@ -6,6 +6,11 @@ export const loadApiEndpoints = (app: Application): void => { app.get("/api", (req: Request, res: Response) => { return res.status(200).send(CoursesData); }); + + app.get("/asdasd", (req: Request, res: Response) => { + return res.status(200).send(CoursesData); + }); + app.get("/asdasd", (req: Request, res: Response) => { return res.status(200).send(CoursesData); });