mirror of
https://github.com/git-chglog/git-chglog.git
synced 2026-01-23 10:25:24 +00:00
6 lines
88 B
Go
6 lines
88 B
Go
package main
|
|
|
|
// Builder ...
|
|
type Builder interface {
|
|
Build(*Answer) (string, error)
|
|
}
|