bcaf283c35
The `memory` provider can load users from a dump obtained using the `dumpdata` REST API. This dump file can be configured using the dataprovider `name` configuration key. It will be loaded at startup and can be reloaded on demand using a `SIGHUP` on Unix based systems and a `paramchange` request to the running service on Windows. Fixes #66
16 lines
260 B
Go
16 lines
260 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
serviceCmd = &cobra.Command{
|
|
Use: "service",
|
|
Short: "Install, Uninstall, Start, Stop, Reload and retrieve status for SFTPGo Windows Service",
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(serviceCmd)
|
|
}
|