From a582c3495e07fa4d80f18d59f835dac918ec52f1 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Thu, 20 Jul 2023 21:15:51 +0100 Subject: [PATCH] Add wrapper type --- pkg/upstreamApi/vstp.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/upstreamApi/vstp.go b/pkg/upstreamApi/vstp.go index a426451..baf4141 100644 --- a/pkg/upstreamApi/vstp.go +++ b/pkg/upstreamApi/vstp.go @@ -1,5 +1,9 @@ package upstreamApi +type MsgData struct { + Data VstpMsg `json:"VSTPCIFMsgV1"` +} + type VstpMsg struct { CIFMsg Schedule `json:"schedule"` }