Files
karma/internal/models/links.go
T

11 lines
197 B
Go

package models
import "regexp"
// JiraRule is used to detect JIRA issue IDs in strings and turn those into
// links
type LinkDetectRule struct {
Regex *regexp.Regexp
URITemplate string
}