10 lines
204 B
Go
10 lines
204 B
Go
package models
|
|
|
|
import "regexp"
|
|
|
|
// GrepConfigInternal defines valid grep configuration after parameters parsing
|
|
type GrepConfigInternal struct {
|
|
PathPattern *regexp.Regexp
|
|
TextPattern *regexp.Regexp
|
|
}
|