| 355 | type ErrorCode string |
| 356 | |
| 357 | type Error struct { |
| 358 | ErrorCode `json:"errorCode"` |
| 359 | PluginID string `json:"pluginId,omitempty"` |
| 360 | SignatureStatus SignatureStatus `json:"status,omitempty"` |
| 361 | message string `json:"-"` |
| 362 | } |
| 363 | |
| 364 | type LoadingStrategy string |
| 365 |
no outgoing calls
no test coverage detected