mirror of
https://github.com/git-chglog/git-chglog.git
synced 2026-01-22 18:06:11 +00:00
8 lines
164 B
Go
8 lines
164 B
Go
package chglog
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
errNotFoundTag = errors.New("could not find the tag")
|
|
errFailedQueryParse = errors.New("failed to parse the query")
|
|
)
|