[67510558] include pluginData as one of the parameter while registration. This will be used for plugin version tracker
diff --git a/api_test.go b/api_test.go
index a42fcb5..d4e7063 100644
--- a/api_test.go
+++ b/api_test.go
@@ -15,10 +15,10 @@
 package apidQuota_test
 
 import (
-	. "github.com/onsi/ginkgo"
 	"bytes"
 	"encoding/json"
 	"github.com/google/uuid"
+	. "github.com/onsi/ginkgo"
 	"io/ioutil"
 	"net/http"
 	"time"
diff --git a/init.go b/init.go
index 0a7a9ab..24a910b 100644
--- a/init.go
+++ b/init.go
@@ -22,7 +22,7 @@
 )
 
 func init() {
-	apid.RegisterPlugin(initPlugin)
+	apid.RegisterPlugin(initPlugin, pluginData)
 }
 
 func initPlugin(services apid.Services) (apid.PluginData, error) {