mirror of
https://github.com/prymitive/karma
synced 2026-05-07 03:26:52 +00:00
11 lines
197 B
Go
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
|
|
}
|