mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-26 01:20:29 +00:00
17 lines
252 B
Go
17 lines
252 B
Go
|
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)
|
||
|
}
|