MCPcopy Create free account
hub / github.com/dropbox/dbxcli / shareLinkJSONOperationResults

Function shareLinkJSONOperationResults

cmd/share_link_json.go:85–91  ·  view source on GitHub ↗
(status string, entries []shareLinkJSONMetadata)

Source from the content-addressed store, hash-verified

83}
84
85func shareLinkJSONOperationResults(status string, entries []shareLinkJSONMetadata) []jsonOperationResult {
86 results := make([]jsonOperationResult, 0, len(entries))
87 for _, entry := range entries {
88 results = append(results, shareLinkJSONOperationResult(status, entry))
89 }
90 return results
91}
92
93func shareLinkJSONMetadataListFromDropbox(links []sharing.IsSharedLinkMetadata) ([]shareLinkJSONMetadata, bool) {
94 result := make([]shareLinkJSONMetadata, 0, len(links))

Callers 1

Calls 1

Tested by

no test coverage detected