GSPath is a vfs path for Google Cloud Storage
| 39 | |
| 40 | // GSPath is a vfs path for Google Cloud Storage |
| 41 | type GSPath struct { |
| 42 | // vfsContext holds the VFS context for this path, |
| 43 | // in particular the client / credentials we should use. |
| 44 | vfsContext *VFSContext |
| 45 | |
| 46 | bucket string |
| 47 | key string |
| 48 | md5Hash string |
| 49 | } |
| 50 | |
| 51 | var ( |
| 52 | _ Path = &GSPath{} |
nothing calls this directly
no outgoing calls
no test coverage detected