19 lines
368 B
Go
19 lines
368 B
Go
//go:build nogcs
|
|
// +build nogcs
|
|
|
|
package vfs
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/drakkan/sftpgo/v2/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")
|
|
}
|