add description field to ListItem interface

This commit is contained in:
Jesse Duffield 2020-08-22 10:14:53 +10:00
parent 63209ef71e
commit 8da93fd762
9 changed files with 36 additions and 4 deletions

View file

@ -11,3 +11,7 @@ type CommitFile struct {
func (f *CommitFile) ID() string {
return f.Name
}
func (f *CommitFile) Description() string {
return f.Name
}