forked from Elara6331/itd
22 lines
384 B
Go
22 lines
384 B
Go
|
package types
|
||
|
|
||
|
type ReqDataFwUpgrade struct {
|
||
|
Type int
|
||
|
Files []string
|
||
|
}
|
||
|
|
||
|
type Response struct {
|
||
|
Value interface{} `json:"value,omitempty"`
|
||
|
Message string `json:"msg,omitempty"`
|
||
|
Error bool `json:"error"`
|
||
|
}
|
||
|
|
||
|
type Request struct {
|
||
|
Type string `json:"type"`
|
||
|
Data interface{} `json:"data,omitempty"`
|
||
|
}
|
||
|
|
||
|
type ReqDataNotify struct {
|
||
|
Title string
|
||
|
Body string
|
||
|
}
|