params.go 373 B

12345678910111213141516171819202122
  1. package debugger
  2. type debugParam struct {
  3. Seq string `json:"seq"`
  4. Debug bool `json:"debug"`
  5. }
  6. type openParam struct {
  7. Seq string `json:"seq"`
  8. Kind string `json:"kind"`
  9. }
  10. type locationParam struct {
  11. Seq string `json:"seq"`
  12. Loc string `json:"loc"`
  13. }
  14. type ppvParam struct {
  15. Seq string `json:"seq"`
  16. Index uint8 `json:"index"`
  17. Value uint8 `json:"value"`
  18. }