2019-07-30 18:51:29 +00: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 10:26:52 +00:00
|
|
|
package main // import "github.com/drakkan/sftpgo"
|
|
|
|
|
2020-05-23 09:58:05 +00:00
|
|
|
import "github.com/drakkan/sftpgo/cmd"
|
2019-07-20 10:26:52 +00:00
|
|
|
|
|
|
|
func main() {
|
2019-08-07 20:46:13 +00:00
|
|
|
cmd.Execute()
|
2019-07-20 10:26:52 +00:00
|
|
|
}
|