mirror of
https://github.com/grafana/grafana.git
synced 2025-01-17 04:02:50 -06:00
9 lines
144 B
Go
9 lines
144 B
Go
|
package plugins
|
||
|
|
||
|
type ErrorCode string
|
||
|
|
||
|
type PluginError struct {
|
||
|
ErrorCode `json:"errorCode"`
|
||
|
PluginID string `json:"pluginId,omitempty"`
|
||
|
}
|