DDax Raadsync
5f7ae647创建于 2025年10月5日历史提交
import { Actor } from "@opencode-ai/console-core/actor.js"
import { getActor } from "./auth"

export async function withActor<T>(fn: () => T, workspace?: string) {
  const actor = await getActor(workspace)
  return Actor.provide(actor.type, actor.properties, fn)
}