mirror of
https://github.com/foomo/contentserver.git
synced 2025-10-16 12:25:44 +00:00
11 lines
238 B
Go
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"`
|
|
}
|