main.go 458 B

123456789101112131415
  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 (
  6. "github.com/drakkan/sftpgo/cmd"
  7. _ "github.com/go-sql-driver/mysql"
  8. _ "github.com/lib/pq"
  9. _ "github.com/mattn/go-sqlite3"
  10. )
  11. func main() {
  12. cmd.Execute()
  13. }