mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 08:55:43 +03:00
12 lines
336 B
Go
12 lines
336 B
Go
package state
|
|
|
|
import "github.com/hashicorp/nomad/plugins/shared"
|
|
|
|
// PluginState is used to store the device managers state across restarts of the
|
|
// agent
|
|
type PluginState struct {
|
|
// ReattachConfigs are the set of reattach configs for plugin's launched by
|
|
// the device manager
|
|
ReattachConfigs map[string]*shared.ReattachConfig
|
|
}
|