Files
graylog-project-cli/changelog/config.go
2022-11-29 15:35:01 +01:00

15 lines
286 B
Go

package changelog
import "regexp"
var SemverVersionPattern = regexp.MustCompile("^\\d+\\.\\d+\\.\\d+$")
type Config struct {
RenderFormat string
RenderGitHubLinks bool
SnippetsPaths []string
ReleaseDate string
ReleaseVersion string
Product string
}