sftpgo-mirror/internal/cmd/service_windows.go

31 lines
849 B
Go
Raw Normal View History

// Copyright (C) 2019 Nicola Murino
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published
// by the Free Software Foundation, version 3.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
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)
}