* begin backend plugin wip * flesh out rpcplugin. everything done except for minor supervisor stubs * done with basic plugin infrastructure * simplify tests * remove unused test lines
9 строки
182 B
Go
9 строки
182 B
Go
package plugin
|
|
|
|
// Supervisor provides the interface for an object that controls the execution of a plugin.
|
|
type Supervisor interface {
|
|
Start() error
|
|
Stop() error
|
|
Hooks() Hooks
|
|
}
|