From 5db546e9646739fd4c9e671c155cc8bf5cbe90ef Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Fri, 28 Sep 2018 18:30:49 +0200 Subject: [PATCH] min mod : comment exported fields --- driver/generic.go | 1 + driver/plugin.go | 1 + 2 files changed, 2 insertions(+) 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