main.go 361 B

12345678910
  1. // Full featured and highly configurable SFTP server.
  2. // For more details about features, installation, configuration and usage please refer to the README inside the source tree:
  3. // https://github.com/drakkan/sftpgo/blob/master/README.md
  4. package main // import "github.com/drakkan/sftpgo"
  5. import "github.com/drakkan/sftpgo/cmd"
  6. func main() {
  7. cmd.Execute()
  8. }