sftpgo-mirror/main.go

16 lines
458 B
Go
Raw Normal View History

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"
import (
"github.com/drakkan/sftpgo/cmd"
2019-07-20 10:26:52 +00:00
_ "github.com/go-sql-driver/mysql"
_ "github.com/lib/pq"
_ "github.com/mattn/go-sqlite3"
)
func main() {
cmd.Execute()
2019-07-20 10:26:52 +00:00
}