()
| 16 | } |
| 17 | |
| 18 | func NewSnapshot() Snapshot { |
| 19 | return Snapshot{ |
| 20 | backendURL: properties.BackendURL, |
| 21 | uploadChunkSizeInMB: properties.UploadChunkSizeInMB, |
| 22 | uploadChunksSequentially: properties.UploadChunksSequentially, |
| 23 | disableProgressBar: properties.DisableProgressBar, |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | func (c Snapshot) GetBackendURL() string { |
| 28 | return getStringProperty(c.backendURL) |
no outgoing calls
no test coverage detected