()
| 85 | } |
| 86 | |
| 87 | func newCredential() *Credential { |
| 88 | cred := &Credential{} |
| 89 | runtime.SetFinalizer(cred, (*Credential).Free) |
| 90 | return cred |
| 91 | } |
| 92 | |
| 93 | func (o *Credential) HasUsername() bool { |
| 94 | if C.git_credential_has_username(o.ptr) == 1 { |
no outgoing calls
no test coverage detected
searching dependent graphs…