swarm-pilot
Version:
A docker swarm manager
5 lines (4 loc) • 341 B
TypeScript
import { ManagedRuntime } from "effect";
import { get_args } from "./args.js";
import { NodeInspectState, ServiceInspectState } from "./states.js";
export declare const build_runtime: (args: Awaited<ReturnType<typeof get_args>>) => ManagedRuntime.ManagedRuntime<import("./config.js").Config | ServiceInspectState | NodeInspectState, never>;