mirror of
https://github.com/moby/buildkit.git
synced 2026-08-09 09:11:45 +00:00
23 lines
420 B
Go
23 lines
420 B
Go
package main
|
|
|
|
import (
|
|
"github.com/moby/buildkit/cmd/buildctl/debug"
|
|
"github.com/urfave/cli/v3"
|
|
)
|
|
|
|
var debugCommand = &cli.Command{
|
|
Name: "debug",
|
|
Usage: "debug utilities",
|
|
Commands: []*cli.Command{
|
|
debug.DumpLLBCommand,
|
|
debug.DumpMetadataCommand,
|
|
debug.WorkersCommand,
|
|
debug.InfoCommand,
|
|
debug.MonitorCommand,
|
|
debug.LogsCommand,
|
|
debug.CtlCommand,
|
|
debug.GetCommand,
|
|
debug.HistoriesCommand,
|
|
},
|
|
}
|