diff --git a/driver/generic.go b/driver/generic.go index c1f5734..2b86ebd 100644 --- a/driver/generic.go +++ b/driver/generic.go @@ -10,6 +10,7 @@ import ( "strings" ) +// Name returns the driver name func (d *Generic) Name() string { return "generic" } // RunController implements the Driver interface diff --git a/driver/plugin.go b/driver/plugin.go index b43344b..3a343aa 100644 --- a/driver/plugin.go +++ b/driver/plugin.go @@ -9,6 +9,7 @@ import ( "strings" ) +// Name returns the driver name func (d *Plugin) Name() string { return "plugin" } // RunController implements the Driver interface