mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-11 19:29:16 +08:00

* NOISSUE - Add opcua-adapter conn route-map, use ServerURI and NodeID Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com> * NOISSUE - Add dynamic subscription Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>
13 lines
221 B
Go
13 lines
221 B
Go
// Copyright (c) Mainflux
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package opcua
|
|
|
|
// Message represent an OPC-UA message
|
|
type Message struct {
|
|
ServerURI string
|
|
NodeID string
|
|
Type string
|
|
Data interface{}
|
|
}
|