mirror of
https://github.com/nxshock/backuper.git
synced 2024-11-28 00:21:02 +05:00
16 lines
232 B
Go
16 lines
232 B
Go
|
package main
|
||
|
|
||
|
type Pattern struct {
|
||
|
// Root directory
|
||
|
Path string
|
||
|
|
||
|
// List of file name patterns
|
||
|
FileNamePatternList []string
|
||
|
|
||
|
// List of file path patterns
|
||
|
FilePathPatternList []string
|
||
|
|
||
|
// Recursive search
|
||
|
Recursive bool
|
||
|
}
|