Id returns the note object's id
()
| 170 | |
| 171 | // Id returns the note object's id |
| 172 | func (n *Note) Id() *Oid { |
| 173 | ptr := C.git_note_id(n.ptr) |
| 174 | runtime.KeepAlive(n) |
| 175 | return newOidFromC(ptr) |
| 176 | } |
| 177 | |
| 178 | // Committer returns the signature of the note committer |
| 179 | func (n *Note) Committer() *Signature { |