mirror of
https://github.com/ipfs/kubo.git
synced 2025-08-06 19:44:01 +08:00
19 lines
343 B
Go
19 lines
343 B
Go
package commands
|
|
|
|
import (
|
|
cmds "github.com/ipfs/go-ipfs/commands"
|
|
|
|
"gx/ipfs/QmQp2a2Hhb7F6eK2A5hN8f9aJy4mtkEikL9Zj4cgB7d1dD/go-ipfs-cmdkit"
|
|
)
|
|
|
|
var DiagCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "Generate diagnostic reports.",
|
|
},
|
|
|
|
Subcommands: map[string]*cmds.Command{
|
|
"sys": sysDiagCmd,
|
|
"cmds": ActiveReqsCmd,
|
|
},
|
|
}
|