16 lines
257 B
Go
16 lines
257 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
// Debug Command
|
||
|
var debugCmd = &cobra.Command{
|
||
|
Use: "debug",
|
||
|
Short: "commands for debugging InfluxDB",
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
debugCmd.AddCommand(initInspectReportTSMCommand()) // Add report-tsm command
|
||
|
}
|