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>
16 lines
368 B
Go
16 lines
368 B
Go
package profileapischema
|
|
|
|
type CardRankingData struct {
|
|
UnitID int `json:"unit_id"`
|
|
TotalLove int `json:"total_love"`
|
|
Rank int `json:"rank"`
|
|
SignFlag bool `json:"sign_flag"`
|
|
}
|
|
|
|
type CardRankingResp struct {
|
|
Result any `json:"result"`
|
|
Status int `json:"status"`
|
|
CommandNum bool `json:"commandNum"`
|
|
TimeStamp int64 `json:"timeStamp"`
|
|
}
|