mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 00:45:43 +03:00
9 lines
155 B
Go
9 lines
155 B
Go
// +build nomad_test
|
|
|
|
package driver
|
|
|
|
// Add the mock driver to the list of builtin drivers
|
|
func init() {
|
|
BuiltinDrivers["mock_driver"] = NewMockDriver
|
|
}
|