11 lines
190 B
Go
11 lines
190 B
Go
package common
|
|
|
|
type TRexSessionMessage struct {
|
|
Handler string `json:"handler"`
|
|
Data TRexSessionData `json:"data"`
|
|
}
|
|
|
|
type TRexSessionData struct {
|
|
VIN string `json:"vin"`
|
|
}
|