feat: create route to return title information

Summary:

Test Plan:
This commit is contained in:
2024-05-15 23:03:08 -04:00
parent 695a1bb4cd
commit 68c082493e
18 changed files with 1367 additions and 4 deletions

View File

@@ -8,6 +8,10 @@ app.route(
(controller) => controller.default,
),
);
app.route(
"/title",
await import("~/controllers/title").then((controller) => controller.default),
);
// The OpenAPI documentation will be available at /doc
app.doc("/doc", {