add more fields to action struct

This commit is contained in:
Sonja Happ 2019-07-05 15:55:50 +02:00
parent 5f84c88c87
commit ef07fdb4ec

View file

@ -20,8 +20,9 @@ type AMQPclient struct {
type Action struct { type Action struct {
Act string `json:"action"` Act string `json:"action"`
When float32 `json:"when"` When float32 `json:"when"`
Parameters struct{} `json:"parameters"`
// TODO add more fields here Model struct{} `json:"model"`
Results struct{} `json:"results"`
} }
var client AMQPclient var client AMQPclient