Initial cloud-services repo - gateway service + pkg modules
This commit is contained in:
14
pkg/common/car_command_locks.go
Normal file
14
pkg/common/car_command_locks.go
Normal file
@@ -0,0 +1,14 @@
|
||||
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"`
|
||||
}
|
||||
Reference in New Issue
Block a user