| 12345678910111213141516171819 |
- //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")
- }
|