X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=RSM%2Fmodels%2Frmr_request.go;h=43d6f09976763c95eccfa42924d247e3c2689224;hb=refs%2Fchanges%2F95%2F2095%2F1;hp=fbead1b6f0e8807b595b75cfb3a6db99687a04bc;hpb=7b80668df78103cebafdfb7caa0070dc92ed3779;p=ric-plt%2Fresource-status-manager.git diff --git a/RSM/models/rmr_request.go b/RSM/models/rmr_request.go index fbead1b..43d6f09 100644 --- a/RSM/models/rmr_request.go +++ b/RSM/models/rmr_request.go @@ -13,17 +13,20 @@ // 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). + package models import "time" type RmrRequest struct { - RanName string - Len int - Payload []byte - StartTime time.Time + RanName string + Len int + Payload []byte + StartTime time.Time } func NewRmrRequest(ranName string, payload []byte, startTime time.Time) *RmrRequest { @@ -33,4 +36,4 @@ func NewRmrRequest(ranName string, payload []byte, startTime time.Time) *RmrRequ payload, startTime, } -} \ No newline at end of file +}