feat(crawler): compute source updates dates

This commit is contained in:
2025-11-25 01:05:39 +02:00
parent 72dfa53f80
commit 1d062f679b
16 changed files with 186 additions and 85 deletions
+2
View File
@@ -1,9 +1,11 @@
import { OpenAPIHono } from "@hono/zod-openapi";
import { articlesRouter } from "#api/rest/routers/articles";
import { sourcesRouter } from "#api/rest/routers/sources";
const routers: OpenAPIHono = new OpenAPIHono();
routers.route("/articles", articlesRouter);
routers.route("/sources", sourcesRouter);
export { routers };