mirror of
https://github.com/kemko/nomad.git
synced 2026-01-08 11:25:41 +03:00
11 lines
331 B
Go
11 lines
331 B
Go
package catalog
|
|
|
|
import "github.com/hashicorp/nomad/drivers/rkt"
|
|
|
|
// 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(rkt.PluginID, rkt.PluginConfig, rkt.PluginLoader)
|
|
}
|