TODO: Unit tests
| 14 | |
| 15 | // TODO: Unit tests |
| 16 | type Folder struct { |
| 17 | connection *swift.Connection |
| 18 | container swift.Container |
| 19 | path string |
| 20 | } |
| 21 | |
| 22 | func NewFolder(connection *swift.Connection, container swift.Container, path string) *Folder { |
| 23 | // Trim leading slash because there's no difference between absolute and relative paths in Swift. |
nothing calls this directly
no outgoing calls
no test coverage detected