github.com/fredbi/git-chglog@v0.0.0-20190706071416-d35c598eac81/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  )