mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-10 04:08:30 +00:00
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]),
|
|
)
|