示例#1
0
文件: note.go 项目: wid/git2go
// Message returns the note message
func (n *Note) Message() string {
	return C.GoString(C.git_note_message(n.ptr))
}
示例#2
0
文件: note.go 项目: jgrocho/go-git2
func (note *Note) Message() string {
	return C.GoString(C.git_note_message(note.git_note))
}