github.com/brandonmanuel/git-chglog@v0.0.0-20200903004639-7a62fa08787a/errors.go (about)

     1  package chglog
     2  
     3  import "errors"
     4  
     5  var (
     6  	errNotFoundTag      = errors.New("could not find the tag")
     7  	errFailedQueryParse = errors.New("failed to parse the query")
     8  )