Files
opencode/cloud/app/src/context/auth.withActor.ts
2025-08-29 11:58:17 -04:00

8 lines
231 B
TypeScript

import { Actor } from "@opencode/cloud-core/actor.js"
import { getActor } from "./auth"
export async function withActor<T>(fn: () => T) {
const actor = await getActor()
return Actor.provide(actor.type, actor.properties, fn)
}