sftpgo/main.go

11 lines
361 B
Go
Raw Normal View History

2019-07-30 20:51:29 +02:00
// Full featured and highly configurable SFTP server.
// For more details about features, installation, configuration and usage please refer to the README inside the source tree:
// https://github.com/drakkan/sftpgo/blob/master/README.md
2019-07-20 12:26:52 +02:00
package main // import "github.com/drakkan/sftpgo"
import "github.com/drakkan/sftpgo/cmd"
2019-07-20 12:26:52 +02:00
func main() {
cmd.Execute()
2019-07-20 12:26:52 +02:00
}