From d41f419497be36d2714ca773ab9e5a8fa3c7c7c5 Mon Sep 17 00:00:00 2001 From: subhash kumar singh Date: Wed, 24 Jan 2024 07:51:44 +0000 Subject: [PATCH] Remove unused structure Removed unused structure. Change-Id: I106bdbbbde3e59d24e46b134f5c403bb8c5f17e0 Signed-off-by: subhash kumar singh --- apis/mmes_apis.go | 3 --- main.go | 5 +---- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/apis/mmes_apis.go b/apis/mmes_apis.go index 9e15b59..568048a 100644 --- a/apis/mmes_apis.go +++ b/apis/mmes_apis.go @@ -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 --- 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 } -- 2.16.6