mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-21 16:03:32 +01:00
11 lines
227 B
Go
11 lines
227 B
Go
package client
|
|
|
|
import "github.com/zrepl/zrepl/internal/cli"
|
|
|
|
var PprofCmd = &cli.Subcommand{
|
|
Use: "pprof",
|
|
SetupSubcommands: func() []*cli.Subcommand {
|
|
return []*cli.Subcommand{PprofListenCmd, pprofActivityTraceCmd}
|
|
},
|
|
}
|