The Line Today scaper finally WORKS!! Now we just need make a UI for

it...
This commit is contained in:
yuanhau 2025-05-18 11:13:25 +08:00
parent 0bcb646cc0
commit fe5e2d996e
2 changed files with 7 additions and 8 deletions

View file

@ -2,6 +2,5 @@ import lineToday from "~/server/scrape/line_today";
export default defineEventHandler(async (event) => {
const slug = getRouterParam(event, "slug");
const data = await lineToday(slug);
console.log(data);
return data;
});