d3650fb2cd
`make release` and `make prerelease` set a `release` tag to disable enabling the `mock_driver`
9 lines
153 B
Go
9 lines
153 B
Go
// +build !release
|
|
|
|
package driver
|
|
|
|
// Add the mock driver to the list of builtin drivers
|
|
func init() {
|
|
BuiltinDrivers["mock_driver"] = NewMockDriver
|
|
}
|