mirror of
https://github.com/moby/buildkit.git
synced 2026-08-10 17:14:08 +00:00
17 lines
286 B
Go
17 lines
286 B
Go
package main
|
|
|
|
import (
|
|
"github.com/moby/buildkit/cmd/buildctl/debug"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
var debugCommand = cli.Command{
|
|
Name: "debug",
|
|
Usage: "debug utilities",
|
|
Subcommands: []cli.Command{
|
|
debug.DumpLLBCommand,
|
|
debug.DumpMetadataCommand,
|
|
debug.WorkersCommand,
|
|
},
|
|
}
|