mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 12:44:10 -06:00
cd7a464f7e
* track pre-installed external plugins in store * fix tests
13 lines
295 B
Go
13 lines
295 B
Go
package storage
|
|
|
|
import (
|
|
"archive/zip"
|
|
"context"
|
|
)
|
|
|
|
type Manager interface {
|
|
Add(ctx context.Context, pluginID string, rc *zip.ReadCloser) (*ExtractedPluginArchive, error)
|
|
Register(ctx context.Context, pluginID, pluginDir string) error
|
|
Remove(ctx context.Context, pluginID string) error
|
|
}
|