mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-23 02:36:57 -04:00
6 lines
138 B
TypeScript
6 lines
138 B
TypeScript
import { Effect } from "effect"
|
|
|
|
export function runStatsEffect<A, E>(effect: Effect.Effect<A, E>) {
|
|
return Effect.runPromise(effect)
|
|
}
|