package cmd import ( "fmt" "os" "github.com/spf13/cobra" "github.com/drakkan/sftpgo/service" ) var ( statusCmd = &cobra.Command{ Use: "status", Short: "Retrieve the status for the SFTPGo Windows Service", Run: func(cmd *cobra.Command, args []string) { s := service.WindowsService{ Service: service.Service{ Shutdown: make(chan bool), }, } status, err := s.Status() if err != nil { fmt.Printf("Error querying service status: %v\r\n", err) os.Exit(1) } else { fmt.Printf("Service status: %#v\r\n", status.String()) } }, } ) func init() { serviceCmd.AddCommand(statusCmd) }