Files
karma/internal/models/links.go
2021-05-28 21:28:31 +01:00

11 lines
203 B
Go

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