mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 00:15:43 +03:00
13 lines
211 B
Go
13 lines
211 B
Go
package structs
|
|
|
|
import "errors"
|
|
|
|
const (
|
|
errPluginShutdown = "plugin is shut down"
|
|
)
|
|
|
|
var (
|
|
// ErrPluginShutdown is returned when the plugin has shutdown.
|
|
ErrPluginShutdown = errors.New(errPluginShutdown)
|
|
)
|