mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-22 15:40:23 +00:00
16 lines
207 B
Go
16 lines
207 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
serviceCmd = &cobra.Command{
|
|
Use: "service",
|
|
Short: "Manage the SFTPGo Windows Service",
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(serviceCmd)
|
|
}
|