mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
* split out plugin manager * remove whitespace * fix tests * split up tests * updating naming conventions * simplify manager * tidy * add more fakes * testing time * add query verif to int test * renaming * add process tests * tidy up manager tests * add extra case to int test * add more coverage to store and process tests * remove comment * fix capatilization * init on provide * remove addfromsource from API
11 lines
254 B
Go
11 lines
254 B
Go
package process
|
|
|
|
import "context"
|
|
|
|
type Service interface {
|
|
// Start executes a backend plugin process.
|
|
Start(ctx context.Context, pluginID string) error
|
|
// Stop terminates a backend plugin process.
|
|
Stop(ctx context.Context, pluginID string) error
|
|
}
|