(ns string)
| 592 | const namespaceQueryArg = "ns" |
| 593 | |
| 594 | func (r *request) addNamespace(ns string) error { |
| 595 | if !r.host.isProxy(ns) { |
| 596 | return nil |
| 597 | } |
| 598 | return r.addQuery(namespaceQueryArg, ns) |
| 599 | } |
| 600 | |
| 601 | type request struct { |
| 602 | method string |
no test coverage detected