diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-12-15 22:48:35 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-12-15 23:05:25 +0100 |
commit | 89563054ea6305c7270dcc6ab6fa5b286eb5f742 (patch) | |
tree | 862e74f361592d38fd3f77ddb4c08276f4db45ee /lib/xaapiv1/events.go | |
parent | 9e6fb5106bcb3a0f93a616198ece579c61eb129b (diff) |
Fixed xds-server folder events detection.
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'lib/xaapiv1/events.go')
-rw-r--r-- | lib/xaapiv1/events.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xaapiv1/events.go b/lib/xaapiv1/events.go index 85dc02a..0ac08e8 100644 --- a/lib/xaapiv1/events.go +++ b/lib/xaapiv1/events.go @@ -58,7 +58,7 @@ var EVTAllList = []string{ // EventMsg Event message send over Websocket, data format depend to Type (see DecodeXXX function) type EventMsg struct { Time string `json:"time"` // Timestamp - FromSessionID string `json:"sessionID"` // Session ID of client that emits this event + FromSessionID string `json:"sessionID"` // Session ID of client who produce this event Type string `json:"type"` // Data type Data interface{} `json:"data"` // Data } |