UNPKG

swarm-pilot

Version:
7 lines (6 loc) 269 B
import { Context, Ref } from "effect"; export class ServiceInspectState extends Context.Tag("ServiceInspectState")() { } const state = []; export const initialState = Ref.make(state); // const makeState = Effect.andThen(Ref.make(state), (value) => new AppState(value))