mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 00:45:43 +03:00
15 lines
426 B
Go
15 lines
426 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package state
|
|
|
|
import pstructs "github.com/hashicorp/nomad/plugins/shared/structs"
|
|
|
|
// PluginState is used to store the driver manager's state across restarts of the
|
|
// agent
|
|
type PluginState struct {
|
|
// ReattachConfigs are the set of reattach configs for plugins launched by
|
|
// the driver manager
|
|
ReattachConfigs map[string]*pstructs.ReattachConfig
|
|
}
|