github.com/git-chglog/git-chglog@v0.15.5-0.20240126074033-6a6993d52d69/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  )