mirror of
https://github.com/kemko/nomad.git
synced 2026-01-08 19:35:41 +03:00
17 lines
452 B
Go
17 lines
452 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//go:build !release
|
|
// +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)
|
|
}
|