mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 00:15:43 +03:00
16 lines
281 B
Go
16 lines
281 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package structs
|
|
|
|
import "errors"
|
|
|
|
const (
|
|
errPluginShutdown = "plugin is shut down"
|
|
)
|
|
|
|
var (
|
|
// ErrPluginShutdown is returned when the plugin has shutdown.
|
|
ErrPluginShutdown = errors.New(errPluginShutdown)
|
|
)
|