Fixing golang linters for VGC
Change-Id: I386d232c74ab47e24d92c18800dc144120b920da
diff --git a/database/dbintf.go b/database/dbintf.go
index 6100d35..f4b6b98 100644
--- a/database/dbintf.go
+++ b/database/dbintf.go
@@ -160,12 +160,12 @@
GetOltFlowService(ctx context.Context) (string, error)
}
-//GetDatabase - returns databse operation based on configuration
+// GetDatabase - returns databse operation based on configuration
func GetDatabase() DBIntf {
return dbObj
}
-//SetDatabase - sets the DB object based on the type
+// SetDatabase - sets the DB object based on the type
func SetDatabase(df DBIntf) {
dbObj = df
}