Fs represents a remote cloudinary server
| 149 | |
| 150 | // Fs represents a remote cloudinary server |
| 151 | type Fs struct { |
| 152 | name string |
| 153 | root string |
| 154 | opt Options |
| 155 | features *fs.Features |
| 156 | pacer *fs.Pacer |
| 157 | srv *rest.Client // For downloading assets via the Cloudinary CDN |
| 158 | cld *cloudinary.Cloudinary // API calls are going through the Cloudinary SDK |
| 159 | lastCRUD time.Time |
| 160 | } |
| 161 | |
| 162 | // Object describes a cloudinary object |
| 163 | type Object struct { |
nothing calls this directly
no outgoing calls
no test coverage detected