mirror of
https://github.com/taigrr/gico.git
synced 2026-04-01 18:58:59 -07:00
add stringer to commit
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
package types
|
package types
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -37,3 +39,10 @@ type (
|
|||||||
Commits []Commit `json:"commits,omitempty"`
|
Commits []Commit `json:"commits,omitempty"`
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func (c Commit) String() string {
|
||||||
|
return fmt.Sprintf("%s\t%s\t%s\t%s\n",
|
||||||
|
c.TimeStamp.Format("0"+time.Kitchen),
|
||||||
|
c.Author, c.Repo,
|
||||||
|
strings.TrimSpace(c.Message))
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user