mirror of
https://github.com/kemko/nomad.git
synced 2026-01-07 19:05:42 +03:00
17 lines
576 B
Go
17 lines
576 B
Go
package catalog
|
|
|
|
import (
|
|
"github.com/hashicorp/nomad/drivers/exec"
|
|
)
|
|
|
|
// This file is where all builtin plugins should be registered in the catalog.
|
|
// Plugins with build restrictions should be placed in the appropriate
|
|
// register_XXX.go file.
|
|
func init() {
|
|
// RegisterDeferredConfig(rawexec.PluginID, rawexec.PluginConfig, rawexec.PluginLoader)
|
|
Register(exec.PluginID, exec.PluginConfig)
|
|
// Register(qemu.PluginID, qemu.PluginConfig)
|
|
// Register(java.PluginID, java.PluginConfig)
|
|
// RegisterDeferredConfig(docker.PluginID, docker.PluginConfig, docker.PluginLoader)
|
|
}
|