Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BaseResponse ¶
BaseResponse is a struct that is intended to be embedded by specific response structs. Both of these in conjunction are used primarily to house the JSON message for passing responses over the comms package (i.e. message queue), but may also contain important dependencies of the response, such as an HTTP handler.
type SetAgentStatusResponse ¶
type SetAgentStatusResponse struct {
BaseResponse
TestUuid string `json:"TestUuid"`
Status string `json:"status"`
}
SetAgentStatusResponse defines this particular response.
type UploadTestDataResponse ¶
type UploadTestDataResponse struct {
BaseResponse
TestUuid string `json:"TestUuid"`
TestData string `json:"status"`
}
UploadTestDataResponse defines this particular response.
Click to show internal directories.
Click to hide internal directories.