feat: support legacy routes

Summary:

Test Plan:
This commit is contained in:
2024-06-02 06:46:22 -04:00
parent d2645028c5
commit 79fd51951b
4 changed files with 207 additions and 0 deletions

View File

@@ -11,4 +11,10 @@ app.route(
await import("./getEpisodeUrl").then((controller) => controller.default),
);
// TODO: Remove this route once v2 is ready
app.route(
"/",
await import("./getEpisodesLegacy").then((controller) => controller.default),
);
export default app;