deployment added
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful

This commit is contained in:
2023-12-04 15:23:20 +01:00
parent 8e94cce445
commit cccd7af635
5 changed files with 39 additions and 11 deletions

View File

@ -22,8 +22,8 @@ func InitDispatcher() {
go archiver()
handlerMap["TTN"] = ttn.NewTTNHandler()
handlerMap["IoT"] = iot.NewIoTHandler()
handlerMap["PV"] = pv.NewPvHandler()
handlerMap["MBGW3"] = mbgw3.NewMbgw3Handler()
handlerMap["PV"] = pv.NewPvHandler(config.Config.Handlers["PV"])
handlerMap["MBGW3"] = mbgw3.NewMbgw3Handler(config.Config.Handlers["MBGW3"])
}
func storeMessage(filename string, item handler.MessageT) {