SetURI returns a URIValue used for setting the given path key
(key string)
| 103 | |
| 104 | // SetURI returns a URIValue used for setting the given path key |
| 105 | func (e *Encoder) SetURI(key string) URIValue { |
| 106 | return newURIValue(&e.path, &e.rawPath, &e.pathBuffer, key) |
| 107 | } |
| 108 | |
| 109 | // SetQuery returns a QueryValue used for setting the given query key |
| 110 | func (e *Encoder) SetQuery(key string) QueryValue { |