X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=mecm%2Fmepm%2Fapplcm%2Fbroker%2Fpkg%2Fhandlers%2Fadapter%2FpluginAdapter%2FpluginAdapter.go;h=ff3ca997617372bfde8aa91d7ed31ad16e7bea62;hb=5011a34d8324f1458ead3734992058c60d7af761;hp=19983e7c01e47f807881f69803a5e10836e328ab;hpb=246be669d7a8109bfc7ce3d7101268a248854be4;p=ealt-edge.git diff --git a/mecm/mepm/applcm/broker/pkg/handlers/adapter/pluginAdapter/pluginAdapter.go b/mecm/mepm/applcm/broker/pkg/handlers/adapter/pluginAdapter/pluginAdapter.go index 19983e7..ff3ca99 100644 --- a/mecm/mepm/applcm/broker/pkg/handlers/adapter/pluginAdapter/pluginAdapter.go +++ b/mecm/mepm/applcm/broker/pkg/handlers/adapter/pluginAdapter/pluginAdapter.go @@ -18,20 +18,21 @@ package pluginAdapter import ( "broker/pkg/plugin" "context" - "github.com/sirupsen/logrus" "time" + + "github.com/sirupsen/logrus" ) const ( - chunkSize = 1024 - rootCertificate = "" + chunkSize = 1024 + rootCertificate = "" ) // Plugin adapter which decides a specific client based on plugin info // TODO PluginInfo to have other information about plugins to find the client and implementation to handle accordingly. type PluginAdapter struct { pluginInfo string - logger *logrus.Logger + logger *logrus.Logger } // Constructor of PluginAdapter