mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-22 15:40:23 +00:00
ad53429cf1
The following build tags are available: - "nogcs", disable Google Cloud Storage backend - "nos3", disable S3 Compabible Object Storage backends - "nobolt", disable Bolt data provider - "nomysql", disable MySQL data provider - "nopgsql", disable PostgreSQL data provider - "nosqlite", disable SQLite data provider - "noportable", disable portable mode
10 lines
361 B
Go
10 lines
361 B
Go
// 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
|
|
package main // import "github.com/drakkan/sftpgo"
|
|
|
|
import "github.com/drakkan/sftpgo/cmd"
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|