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