feat: add google_drive driver

This commit is contained in:
Noah Hsu
2022-09-03 20:34:06 +08:00
parent 7da9e33c4d
commit 5d0668b00b
6 changed files with 334 additions and 2 deletions

View File

@ -11,11 +11,11 @@ type FileStream struct {
WebPutAsTask bool
}
func (f FileStream) GetMimetype() string {
func (f *FileStream) GetMimetype() string {
return f.Mimetype
}
func (f FileStream) NeedStore() bool {
func (f *FileStream) NeedStore() bool {
return f.WebPutAsTask
}