feat: create route to search for titles

Summary:

Test Plan:
This commit is contained in:
2024-05-16 01:21:06 -04:00
parent 359b73c7a8
commit 88b1a4ced5
13 changed files with 3808 additions and 4 deletions

View File

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