Set sets Claims[key] = val. It'll overwrite without warning.
(key string, val interface{})
| 16 | |
| 17 | // Set sets Claims[key] = val. It'll overwrite without warning. |
| 18 | func (h Header) Set(key string, val interface{}) { |
| 19 | h[key] = val |
| 20 | } |
| 21 | |
| 22 | // Del removes the value that corresponds with key from the Header. |
| 23 | func (h Header) Del(key string) { |
no outgoing calls