()
| 212 | } |
| 213 | |
| 214 | func (sub *Submodule) Url() string { |
| 215 | n := C.GoString(C.git_submodule_url(sub.ptr)) |
| 216 | runtime.KeepAlive(sub) |
| 217 | return n |
| 218 | } |
| 219 | |
| 220 | func (c *SubmoduleCollection) SetUrl(submodule, url string) error { |
| 221 | csubmodule := C.CString(submodule) |
nothing calls this directly
no outgoing calls
no test coverage detected