mirror of
https://github.com/Graylog2/graylog-project-cli.git
synced 2026-03-13 08:02:57 +08:00
15 lines
286 B
Go
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
|
|
}
|