ws and pruner done!!!
This commit is contained in:
parent
c5cc245e25
commit
74add408e6
34 changed files with 1455 additions and 221 deletions
27
types/internal.go
Normal file
27
types/internal.go
Normal file
|
@ -0,0 +1,27 @@
|
|||
package types
|
||||
|
||||
import "time"
|
||||
|
||||
type Player struct {
|
||||
CharacterID string `json:"character_id"`
|
||||
LastUpdated time.Time `json:"last_updated"`
|
||||
WorldID uint16 `json:"world_id"`
|
||||
FactionID Faction `json:"faction_id"`
|
||||
ZoneID uint32 `json:"zone_id"`
|
||||
ClassName string `json:"class_name"`
|
||||
}
|
||||
|
||||
type Vehicle struct {
|
||||
CharacterID string `json:"character_id"`
|
||||
LastUpdated time.Time `json:"last_updated"`
|
||||
WorldID uint16 `json:"world_id"`
|
||||
FactionID Faction `json:"faction_id"`
|
||||
ZoneID uint32 `json:"zone_id"`
|
||||
VehicleName string `json:"vehicle_name"`
|
||||
}
|
||||
|
||||
type AnalyticEvent struct {
|
||||
Time time.Time `json:"time"`
|
||||
WorldID uint16 `json:"world_id"`
|
||||
EventName string `json:"event_name"`
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue