7 lines
265 B
TypeScript
7 lines
265 B
TypeScript
import * as Command from "effect/unstable/cli/Command"
|
|
import { AgentsCommand } from "./agents"
|
|
|
|
export const DebugCommand = Command.make("debug").pipe(
|
|
Command.withDescription("Debugging and troubleshooting tools"),
|
|
Command.withSubcommands([AgentsCommand]),
|
|
)
|