15 lines
357 B
Go
15 lines
357 B
Go
package common
|
|
|
|
const (
|
|
LockDoor string = "lock"
|
|
UnlockDoor string = "unlock"
|
|
)
|
|
|
|
type CarCommandLocks struct {
|
|
LeftFront string `json:"left_front,omitempty"`
|
|
RightFront string `json:"right_front,omitempty"`
|
|
LeftRear string `json:"left_rear,omitempty"`
|
|
RightRear string `json:"right_rear,omitempty"`
|
|
Trunk string `json:"trunk,omitempty"`
|
|
}
|