Files
nomad/helper/pluginutils/catalog/register_testing.go
Michael Schurter 0d61ff0fb9 move pluginutils -> helper/pluginutils
I wanted a different color bikeshed, so I get to paint it
2019-01-22 15:50:08 -08:00

13 lines
362 B
Go

// +build !release
package catalog
import "github.com/hashicorp/nomad/drivers/mock"
// Register the mock driver with the builtin driver plugin catalog. All builtin
// plugins that are intended for production use should be registered in
// register.go as this file is not built as part of a release.
func init() {
Register(mock.PluginID, mock.PluginConfig)
}