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

  return await db.createWorkspace();
});