import { getCategoryTree } from "#server/service/collection"; export default defineWrappedResponseHandler({ auth: "required" }, async () => { const tree = await getCategoryTree(); return R.success(tree); });