mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-22 15:53:45 +00:00
15 lines
357 B
Go
15 lines
357 B
Go
package api
|
|
|
|
type CheckStatus string
|
|
|
|
const (
|
|
CheckStatusSuccess CheckStatus = "SUCCESS"
|
|
CheckStatusFailure CheckStatus = "FAILURE"
|
|
CheckStatusUnknown CheckStatus = "UNKNOWN"
|
|
)
|
|
|
|
type ApiV1ChecksHistoryPOSTBody struct {
|
|
Status CheckStatus `json:"status"`
|
|
Note string `json:"note"`
|
|
WorkerGroupId string `json:"worker_group"`
|
|
}
|