This repository has been archived by the owner on Oct 22, 2021. It is now read-only.
generated from beyondstorage/go-service-example
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* implement create operation for storager * implement metadata operation for storager * convert path to FileId * implement delete operation for storager * implement the rest operations for storager * refactor basic operations * implement Direr and refactor basic operations * fix: embed types.UnimplementedDirer in stroage * update description about pathToId and use vararg syntax for loops * implicitly create non-exist directories for users in Write operation * style: go fmt * don't export unnecssary variables and sort improts
- Loading branch information
Showing
6 changed files
with
321 additions
and
14 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package gdrive | ||
|
||
type objectPageStatus struct { | ||
limit uint32 | ||
path string | ||
pageToken string | ||
} | ||
|
||
func (i *objectPageStatus) ContinuationToken() string { | ||
return i.pageToken | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.