25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
238 B

  1. package model
  2. type PositionResponse struct {
  3. Count int `json:"count"`
  4. Items []Position `json:"items"`
  5. }
  6. type Position struct {
  7. Mac string `json:"mac"`
  8. X float32 `json:"x"`
  9. Y float32 `json:"y"`
  10. Z float32 `json:"z"`
  11. }