mirror of
https://github.com/ipfs/kubo.git
synced 2025-08-06 11:31:54 +08:00

* Updates go-ipfs-cmds to try to get the tests to pass on travis. * While we're at it, fix duplicate gx deps. License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
18 lines
384 B
Go
18 lines
384 B
Go
package commands
|
|
|
|
import (
|
|
cmds "gx/ipfs/QmQtQrtNioesAWtrx8csBvfY37gTe94d6wQ3VikZUjxD39/go-ipfs-cmds"
|
|
cmdkit "gx/ipfs/Qmde5VP1qUkyQXKCfmEUA7bP64V2HAptbJ7phuPp7jXWwg/go-ipfs-cmdkit"
|
|
)
|
|
|
|
var DiagCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "Generate diagnostic reports.",
|
|
},
|
|
|
|
Subcommands: map[string]*cmds.Command{
|
|
"sys": sysDiagCmd,
|
|
"cmds": ActiveReqsCmd,
|
|
},
|
|
}
|