()
| 206 | } |
| 207 | |
| 208 | func (sub *Submodule) Path() string { |
| 209 | n := C.GoString(C.git_submodule_path(sub.ptr)) |
| 210 | runtime.KeepAlive(sub) |
| 211 | return n |
| 212 | } |
| 213 | |
| 214 | func (sub *Submodule) Url() string { |
| 215 | n := C.GoString(C.git_submodule_url(sub.ptr)) |
nothing calls this directly
no outgoing calls
no test coverage detected