28 lines
488 B
Go
28 lines
488 B
Go
//go:build !linux
|
|
|
|
package main
|
|
|
|
import (
|
|
"runtime"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
type cliDashboard struct{}
|
|
|
|
func NewCLIDashboard() *cliDashboard {
|
|
return &cliDashboard{}
|
|
}
|
|
|
|
func (cli cliDashboard) NewCommand() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "dashboard",
|
|
DisableAutoGenTag: true,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
log.Infof("Dashboard command is disabled on %s", runtime.GOOS)
|
|
},
|
|
}
|
|
|
|
return cmd
|
|
}
|