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>
12 lines
306 B
Go
12 lines
306 B
Go
package unitschema
|
|
|
|
type DeckNameReq struct {
|
|
Module string `json:"module"`
|
|
UnitDeckID int `json:"unit_deck_id"`
|
|
Action string `json:"action"`
|
|
TimeStamp int `json:"timeStamp"`
|
|
Mgd int `json:"mgd"`
|
|
CommandNum string `json:"commandNum"`
|
|
DeckName string `json:"deck_name"`
|
|
}
|