github.com/rivy-go/git-changelog@v0.0.0-20240424224517-b86e6ab57773/internal/changelog/errors.go (about)

     1  package changelog
     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  )