Author returns the signature of the note author
()
| 164 | |
| 165 | // Author returns the signature of the note author |
| 166 | func (n *Note) Author() *Signature { |
| 167 | ptr := C.git_note_author(n.ptr) |
| 168 | return newSignatureFromC(ptr) |
| 169 | } |
| 170 | |
| 171 | // Id returns the note object's id |
| 172 | func (n *Note) Id() *Oid { |