2021-01-12 06:32:00 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
type NatsInfo struct {
|
|
|
|
User string `json:"user"`
|
|
|
|
Password string `json:"password"`
|
|
|
|
}
|
2021-01-29 20:10:52 +00:00
|
|
|
|
|
|
|
type AgentIDS struct {
|
|
|
|
IDs []string `json:"agent_ids"`
|
|
|
|
}
|
2021-01-30 04:39:15 +00:00
|
|
|
|
|
|
|
type Recovery struct {
|
|
|
|
Func string `json:"func"`
|
|
|
|
Data map[string]string `json:"payload"`
|
|
|
|
}
|