| 83 | var ErrPaymentRequired = errors.New("payment required for API calls") |
| 84 | |
| 85 | type imp struct { |
| 86 | mu sync.Mutex // guards following |
| 87 | imageFileRef map[string]blob.Ref // url to file schema blob |
| 88 | |
| 89 | importer.OAuth2 // for CallbackRequestAccount and CallbackURLParameters |
| 90 | } |
| 91 | |
| 92 | func (*imp) Properties() importer.Properties { |
| 93 | return importer.Properties{ |
nothing calls this directly
no outgoing calls
no test coverage detected