Initial code for dms server
This patch is initial code for setting up dms server.
Issue-ID: RIC-714
Signed-off-by: subhash kumar singh <subh.singh@samsung.com>
Change-Id: I6b3eb1f45de333deb8f54dfb25c72be8bfdd551c
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..f8b1aad
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,51 @@
+//
+//==================================================================================
+// Copyright (c) 2022 Samsung
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+// This source code is part of the near-RT RIC (RAN Intelligent Controller)
+// platform project (RICP).
+//==================================================================================
+//
+module gerrit.o-ran-sc.org/r/ric-plt/ricdms
+
+go 1.17
+
+require (
+ github.com/go-openapi/errors v0.20.2
+ github.com/go-openapi/loads v0.21.1
+ github.com/go-openapi/runtime v0.24.1
+ github.com/go-openapi/spec v0.20.6
+ github.com/go-openapi/strfmt v0.21.2
+ github.com/go-openapi/swag v0.21.1
+ github.com/go-openapi/validate v0.22.0
+ github.com/jessevdk/go-flags v1.5.0
+ golang.org/x/net v0.0.0-20220630215102-69896b714898
+)
+
+require (
+ github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect
+ github.com/docker/go-units v0.4.0 // indirect
+ github.com/go-openapi/analysis v0.21.2 // indirect
+ github.com/go-openapi/jsonpointer v0.19.5 // indirect
+ github.com/go-openapi/jsonreference v0.20.0 // indirect
+ github.com/go-stack/stack v1.8.1 // indirect
+ github.com/josharian/intern v1.0.0 // indirect
+ github.com/mailru/easyjson v0.7.7 // indirect
+ github.com/mitchellh/mapstructure v1.4.3 // indirect
+ github.com/oklog/ulid v1.3.1 // indirect
+ go.mongodb.org/mongo-driver v1.8.3 // indirect
+ golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
+ gopkg.in/yaml.v2 v2.4.0 // indirect
+)