sftpgo-mirror/vfs/gcsfs_disabled.go
2021-03-21 19:15:47 +01:00

18 lines
348 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, mountPath string, config GCSFsConfig) (Fs, error) {
return nil, errors.New("Google Cloud Storage disabled at build time")
}