(values *url.Values, key string, value string)
| 103 | } |
| 104 | |
| 105 | func SetValue(values *url.Values, key string, value string) { |
| 106 | if value == "" { |
| 107 | return |
| 108 | } |
| 109 | values.Set(key, value) |
| 110 | } |
| 111 | |
| 112 | func Max(a, b int) int { |
| 113 | if a > b { |
no test coverage detected