github.com/bigcommerce/nomad@v0.9.3-bc/client/devicemanager/state/state.go (about) 1 package state 2 3 import pstructs "github.com/hashicorp/nomad/plugins/shared/structs" 4 5 // PluginState is used to store the device managers state across restarts of the 6 // agent 7 type PluginState struct { 8 // ReattachConfigs are the set of reattach configs for plugin's launched by 9 // the device manager 10 ReattachConfigs map[string]*pstructs.ReattachConfig 11 }