Files
nomad/command/agent/plugin_internal_catalog.go
2018-10-16 16:56:56 -07:00

13 lines
333 B
Go

package agent
import (
// Each internal plugin has an init func which registers itself with the
// plugin catalog. Since the plugin implementations are not imported by the
// client or server they must be referenced here so plugin registration
// occures.
// raw_exec driver
_ "github.com/hashicorp/nomad/drivers/rawexec"
)