import getAccountId from "lib/account/get-account";
import getOneProject from "@cocalc/server/projects/get-one";
export default async function handle(req, res) {
const account_id = await getAccountId(req);
try {
res.json(await getOneProject(account_id));
} catch (err) {
res.json({ error: err.message });
}
}