13 lines
160 B
Go
13 lines
160 B
Go
package messages
|
|
|
|
type AgentTask struct {
|
|
Command string
|
|
Params map[string]string
|
|
}
|
|
|
|
type TaskResult struct {
|
|
Command string
|
|
Success bool
|
|
Err error
|
|
}
|