SyncResponseETag returns a new syncResponse with an etag.
(success bool, metadata any, etag any)
| 130 | |
| 131 | // SyncResponseETag returns a new syncResponse with an etag. |
| 132 | func SyncResponseETag(success bool, metadata any, etag any) Response { |
| 133 | return &syncResponse{success: success, metadata: metadata, etag: etag} |
| 134 | } |
| 135 | |
| 136 | // SyncResponseLocation returns a new syncResponse with a location. |
| 137 | func SyncResponseLocation(success bool, metadata any, location string) Response { |
no outgoing calls
no test coverage detected
searching dependent graphs…