feat: support fetching "currently watching" titles when logging in

This commit is contained in:
2024-09-20 00:06:22 -04:00
parent 079a9402e4
commit 432da61aec
6 changed files with 281 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
import { OpenAPIHono } from "@hono/zod-openapi";
const app = new OpenAPIHono();
app.route(
"/anilist",
await import("./anilist").then((controller) => controller.default),
);
export default app;