aboutsummaryrefslogtreecommitdiffstats
path: root/drive/types.go
diff options
context:
space:
mode:
Diffstat (limited to 'drive/types.go')
-rw-r--r--drive/types.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/drive/types.go b/drive/types.go
index d70dfb5..6c1bd14 100644
--- a/drive/types.go
+++ b/drive/types.go
@@ -35,3 +35,13 @@ type DownloadFileArgs struct {
NoProgress bool
Stdout bool
}
+
+type UploadFileArgs struct {
+ Path string
+ Name string
+ Parent string
+ Mime string
+ Recursive bool
+ Stdin bool
+ Share bool
+}