(copts *C.git_proxy_options)
| 182 | } |
| 183 | |
| 184 | func proxyOptionsFromC(copts *C.git_proxy_options) ProxyOptions { |
| 185 | return ProxyOptions{ |
| 186 | Type: ProxyType(copts._type), |
| 187 | Url: C.GoString(copts.url), |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | type Remote struct { |
| 192 | doNotCompare |
no test coverage detected
searching dependent graphs…