feat: support fetching "currently watching" titles when logging in
This commit is contained in:
10
src/controllers/auth/index.ts
Normal file
10
src/controllers/auth/index.ts
Normal 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;
|
||||
Reference in New Issue
Block a user