sftpgo-mirror/vfs/gcsfs_disabled.go
2020-06-19 17:08:51 +02:00

18 lines
337 B
Go

// +build nogcs
package vfs
import (
"errors"
"github.com/drakkan/sftpgo/version"
)
func init() {
version.AddFeature("-gcs")
}
// NewGCSFs returns an error, GCS is disabled
func NewGCSFs(connectionID, localTempDir string, config GCSFsConfig) (Fs, error) {
return nil, errors.New("Google Cloud Storage disabled at build time")
}