123456789101112131415161718192021222324 |
- //autogenerated:yes
- //nolint:revive,lll
- package clean_msg
- import (
- "github.com/bluenviron/goroslib/v2/pkg/msg"
- )
- type LoadVirtualWallReq struct {
- msg.Package `ros:"clean_msg"`
- MapName string
- Wall VirtualWallList
- }
- type LoadVirtualWallRes struct {
- msg.Package `ros:"clean_msg"`
- State bool
- }
- type LoadVirtualWall struct {
- msg.Package `ros:"clean_msg"`
- LoadVirtualWallReq
- LoadVirtualWallRes
- }
|