1
mirror of https://github.com/rclone/rclone synced 2025-01-26 09:07:29 +01:00

google cloud storage: Fix compile after API change in "google.golang.org/api/storage/v1"

The breaking change is: google-api-go-generator: remove underscores from identifiers.
This commit is contained in:
Nick Craig-Wood 2015-05-19 08:18:26 +01:00
parent 88293a4b8a
commit ba81277bbe

View File

@ -42,7 +42,7 @@ const (
var ( var (
// Description of how to auth for this app // Description of how to auth for this app
storageAuth = &googleauth.Auth{ storageAuth = &googleauth.Auth{
Scope: storage.DevstorageFull_controlScope, Scope: storage.DevstorageFullControlScope,
DefaultClientId: rcloneClientId, DefaultClientId: rcloneClientId,
DefaultClientSecret: rcloneClientSecret, DefaultClientSecret: rcloneClientSecret,
} }