sftpgo-mirror/cmd/service_windows.go

17 lines
207 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",
2021-10-03 06:14:57 +00:00
Short: "Manage the SFTPGo Windows Service",
2019-09-16 06:52:58 +00:00
}
)
func init() {
rootCmd.AddCommand(serviceCmd)
}