sftpgo-mirror/cmd/service_windows.go

17 lines
252 B
Go
Raw Normal View History

2019-09-16 06:52:58 +00:00
package cmd
import (
"github.com/spf13/cobra"
)
var (
serviceCmd = &cobra.Command{
Use: "service",
Short: "Install, Uninstall, Start, Stop and retrieve status for SFTPGo Windows Service",
}
)
func init() {
rootCmd.AddCommand(serviceCmd)
}