1package state
2
3import pstructs "github.com/hashicorp/nomad/plugins/shared/structs"
4
5// PluginState is used to store the device manager's state across restarts of the
6// agent
7type PluginState struct {
8	// ReattachConfigs are the set of reattach configs for plugins launched by
9	// the device manager
10	ReattachConfigs map[string]*pstructs.ReattachConfig
11}
12