| 6 | ) |
| 7 | |
| 8 | type UnmapRouteCommand struct { |
| 9 | BaseCommand |
| 10 | |
| 11 | RequiredArgs flag.AppDomain `positional-args:"yes"` |
| 12 | Hostname string `long:"hostname" short:"n" description:"Hostname used to identify the HTTP route"` |
| 13 | Path flag.V7RoutePath `long:"path" description:"Path used to identify the HTTP route"` |
| 14 | Port int `long:"port" description:"Port used to identify the TCP route"` |
| 15 | relatedCommands interface{} `related_commands:"delete-route, map-route, routes"` |
| 16 | } |
| 17 | |
| 18 | func (cmd UnmapRouteCommand) Usage() string { |
| 19 | return ` |
nothing calls this directly
no outgoing calls
no test coverage detected