3
0
Files
corteza/internal/payload/incoming/command.go
2018-10-04 18:03:08 +02:00

11 lines
239 B
Go

package incoming
type (
ExecCommand struct {
ChannelID string `json:"channelId"`
Command string `json:"command"`
Params map[string]string `json:"params"`
Input string `json:"input"`
}
)