github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/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 manager's state across restarts of the
     6  // agent
     7  type 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  }