github.com/smithx10/nomad@v0.9.1-rc1/client/pluginmanager/drivermanager/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 driver 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 driver manager 10 ReattachConfigs map[string]*pstructs.ReattachConfig 11 }