package zdaemon type IPCJsonDef_CheckAlive struct { Alive bool `json:"alive"` } type IPCJsonDef_Stop struct { Success bool `json:"suc"` Msg string `json:"msg"` } type IPCJsonDef_GetStatus struct { Status string `json:"suc"` HasExtra bool `json:"has_extra"` ExtraInfo map[string]string `json:"extra"` } type IPCJsonDef_OtherOperationRequest struct { Operation string `json:"opcmd"` Args []string `json:"args"` } type IPCJsonDef_OtherOperationResponse struct { Result string `json:"result"` }