diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/config.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/config.go b/modules/config.go index 45a2f22ee..f80a456cf 100644 --- a/modules/config.go +++ b/modules/config.go @@ -379,6 +379,11 @@ type Mount struct { Lang string // any language code associated with this mount. + // Include only files matching the given Glob patterns (string or slice). + IncludeFiles interface{} + + // Exclude all files matching the given Glob patterns (string or slice). + ExcludeFiles interface{} } func (m Mount) Component() string { |