jmou/yakatak
git clone https://github.com/jmou/yakatak.git
git clone git@github.com:jmou/yakatak.git
Loading…
(top)/app/server/api/decks.get.ts
language: TypeScript
199 Bytes / 7 lines / 6 loc
History
View raw
export default defineEventHandler(async (event) => {
  const config = useRuntimeConfig(event);
  const db = await getDb(config.dbPath);

  const decks = await db.listDecks();
  return { decks };
});