mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-24 20:07:45 +08:00
Note: This commit is technically broken. However, I need to make a bunch of cmds changes to make this work and I'd rather not bundle both changes into a single commit. License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
19 lines
343 B
Go
19 lines
343 B
Go
package commands
|
|
|
|
import (
|
|
cmds "github.com/ipfs/go-ipfs/commands"
|
|
|
|
"gx/ipfs/QmUyfy4QSr3NXym4etEiRyxBLqqAeKHJuRdi8AACxg63fZ/go-ipfs-cmdkit"
|
|
)
|
|
|
|
var DiagCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "Generate diagnostic reports.",
|
|
},
|
|
|
|
Subcommands: map[string]*cmds.Command{
|
|
"sys": sysDiagCmd,
|
|
"cmds": ActiveReqsCmd,
|
|
},
|
|
}
|