aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetter Rasmussen2015-03-21 11:49:41 +0100
committerPetter Rasmussen2015-03-21 11:49:41 +0100
commitdbda1f9110933f542430bcbfe269bd4eb6c9f6e2 (patch)
treea626ae62265da7aeb93f56a1f810b760e6b66db9
parentdfbac8d30dfd5ad21299cce6d8561f53685acc08 (diff)
downloadgdrive-dbda1f9110933f542430bcbfe269bd4eb6c9f6e2.tar.bz2
gofmt
-rw-r--r--drive.go28
1 files changed, 14 insertions, 14 deletions
diff --git a/drive.go b/drive.go
index 499d5f6..ab90bbd 100644
--- a/drive.go
+++ b/drive.go
@@ -2,10 +2,10 @@ package main
import (
"fmt"
- "github.com/prasmussen/google-api-go-client/googleapi"
"github.com/prasmussen/gdrive/cli"
"github.com/prasmussen/gdrive/gdrive"
"github.com/prasmussen/gdrive/util"
+ "github.com/prasmussen/google-api-go-client/googleapi"
"github.com/voxelbrain/goptions"
"os"
)
@@ -41,14 +41,14 @@ type Options struct {
} `goptions:"folder"`
Upload struct {
- File *os.File `goptions:"-f, --file, mutexgroup='input', obligatory, rdonly, description='File or directory to upload'"`
- Stdin bool `goptions:"-s, --stdin, mutexgroup='input', obligatory, description='Use stdin as file content'"`
- Title string `goptions:"-t, --title, description='Title to give uploaded file. Defaults to filename'"`
- ParentId string `goptions:"-p, --parent, description='Parent Id of the file'"`
- Share bool `goptions:"--share, description='Share uploaded file'"`
- MimeType string `goptions:"--mimetype, description='The MIME type (default will try to figure it out)'"`
- Convert bool `goptions:"--convert, description='File will be converted to Google Docs format'"`
- ChunkSize int64 `goptions:"-C, --chunksize, description='Set chunk size in bytes. Minimum is 262144, default is 1048576. Recommended to be a power of two.'"`
+ File *os.File `goptions:"-f, --file, mutexgroup='input', obligatory, rdonly, description='File or directory to upload'"`
+ Stdin bool `goptions:"-s, --stdin, mutexgroup='input', obligatory, description='Use stdin as file content'"`
+ Title string `goptions:"-t, --title, description='Title to give uploaded file. Defaults to filename'"`
+ ParentId string `goptions:"-p, --parent, description='Parent Id of the file'"`
+ Share bool `goptions:"--share, description='Share uploaded file'"`
+ MimeType string `goptions:"--mimetype, description='The MIME type (default will try to figure it out)'"`
+ Convert bool `goptions:"--convert, description='File will be converted to Google Docs format'"`
+ ChunkSize int64 `goptions:"-C, --chunksize, description='Set chunk size in bytes. Minimum is 262144, default is 1048576. Recommended to be a power of two.'"`
} `goptions:"upload"`
Download struct {
@@ -107,16 +107,16 @@ func main() {
case "upload":
args := opts.Upload
- // Set custom chunksize if given
- if args.ChunkSize >= (1 << 18) {
- googleapi.SetChunkSize(args.ChunkSize)
- }
+ // Set custom chunksize if given
+ if args.ChunkSize >= (1 << 18) {
+ googleapi.SetChunkSize(args.ChunkSize)
+ }
if args.Stdin {
err = cli.UploadStdin(drive, os.Stdin, args.Title, args.ParentId, args.Share, args.MimeType, args.Convert)
} else {
err = cli.Upload(drive, args.File, args.Title, args.ParentId, args.Share, args.MimeType, args.Convert)
- }
+ }
case "download":
args := opts.Download