git-chglog/errors.go
2018-02-18 01:54:44 +09:00

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")
)