Drop LevelDB and move all the things to SQLite. Implemented endpoints: /api <unit, accessoryMaterialAll> /api <unit, accessoryTab> /live/continue /live/partyList /unit/favoriteAccessory (WIP) /unit/sale Signed-off-by: Sean Du <do4suki@gmail.com>
15 lines
346 B
Go
15 lines
346 B
Go
package ghomeschema
|
|
|
|
type GuestStatusData struct {
|
|
Disablead int `json:"disablead"`
|
|
Loginswitch int `json:"loginswitch"`
|
|
Message string `json:"message"`
|
|
Result int `json:"result"`
|
|
}
|
|
|
|
type GuestStatusResp struct {
|
|
Code int `json:"code"`
|
|
Msg string `json:"msg"`
|
|
Data GuestStatusData `json:"data"`
|
|
}
|