1package structs
2
3import "errors"
4
5const (
6	errPluginShutdown = "plugin is shut down"
7)
8
9var (
10	// ErrPluginShutdown is returned when the plugin has shutdown.
11	ErrPluginShutdown = errors.New(errPluginShutdown)
12)
13