2021-06-01 10:51:35 +02:00
|
|
|
package ws
|
|
|
|
|
|
|
|
const (
|
2021-06-01 18:08:29 +02:00
|
|
|
// BodyError Message Body map typ for errors
|
2021-06-01 10:51:35 +02:00
|
|
|
BodyError = "error"
|
2021-06-01 18:08:29 +02:00
|
|
|
// BodySet Message Body map typ for set values
|
|
|
|
BodySet = "set"
|
|
|
|
// BodyGet Message Body map typ for get values
|
|
|
|
BodyGet = "get"
|
2021-06-01 10:51:35 +02:00
|
|
|
)
|