contentserver/responses/update.go
2024-03-21 16:03:21 +01:00

11 lines
238 B
Go

package responses
// Update - information about an update
type Update struct {
// did it work or not
Success bool `json:"success"`
// this is for humans
ErrorMessage string `json:"errorMessage"`
Stats Stats `json:"stats"`
}