Remove unused structure 52/12452/1
authorsubhash kumar singh <subh.singh@samsung.com>
Wed, 24 Jan 2024 07:51:44 +0000 (07:51 +0000)
committersubhash kumar singh <subh.singh@samsung.com>
Wed, 24 Jan 2024 07:51:44 +0000 (07:51 +0000)
Removed unused structure.

Change-Id: I106bdbbbde3e59d24e46b134f5c403bb8c5f17e0
Signed-off-by: subhash kumar singh <subh.singh@samsung.com>
apis/mmes_apis.go
main.go

index 9e15b59..568048a 100644 (file)
@@ -34,9 +34,6 @@ type ModelInfo struct {
        Metainfo  map[string]interface{} `json:"meta-info"`
 }
 
-type MMESApis struct {
-}
-
 func init() {
        logging.INFO("Starting api server...")
        router := gin.Default()
diff --git a/main.go b/main.go
index 57e666f..637a482 100644 (file)
--- a/main.go
+++ b/main.go
@@ -18,13 +18,10 @@ limitations under the License.
 package main
 
 import (
-       "gerrit.o-ran-sc.org/r/aiml-fw/awmf/modelmgmtservice/apis"
+       "gerrit.o-ran-sc.org/r/aiml-fw/awmf/modelmgmtservice/apis"
        "gerrit.o-ran-sc.org/r/aiml-fw/awmf/modelmgmtservice/logging"
 )
 
 func main() {
        logging.INFO("Starting api..")
-       mmes := &apis.MMESApis{}
-
-       _ = mmes
 }