agent_api/messages/task.go

13 lines
160 B
Go
Raw Normal View History

2017-05-15 09:19:37 +00:00
package messages
type AgentTask struct {
Command string
Params map[string]string
}
2017-05-15 09:51:37 +00:00
type TaskResult struct {
Command string
Success bool
Err error
}