Reverting the code after releasing the image

Change-Id: Ie8c567f805ccb3dc404d512b0a891f38c11d772d
Signed-off-by: wahidw <abdulwahid.w@nokia.com>
diff --git a/pkg/sbi/sbi.go b/pkg/sbi/sbi.go
index 9d1380e..58fe7d8 100644
--- a/pkg/sbi/sbi.go
+++ b/pkg/sbi/sbi.go
@@ -171,3 +171,18 @@
                 }
         }
 }
+
+func (s *Sbi) createEndpoint(payload string, sbi Engine) (*rtmgr.Endpoint) {
+	xapp.Logger.Debug("CreateEndPoint %v", payload)
+	stringSlice := strings.Split(payload, " ")
+	uuid := stringSlice[0]
+	xapp.Logger.Debug(">>> uuid %v",  stringSlice[0])
+
+
+	if _, ok := rtmgr.Eps[uuid]; ok {
+		ep := rtmgr.Eps[uuid]
+		return ep
+	}
+
+	return nil
+}