feat(api): implement links routes

This commit is contained in:
2026-03-18 00:25:00 +01:00
parent 3be2034a49
commit 0c8677f514
5 changed files with 93 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import { db } from "#server/db";
export default defineEventHandler(async () => {
return db.query.links.findMany();
});