9 lines
284 B
Go
9 lines
284 B
Go
package common
|
|
|
|
//FileTypes is for ignoring files to add or ignoring compress, or for locked files, all use the same type of struct (files, folders and exts)
|
|
type FileTypes struct {
|
|
Files []string `toml:"files"`
|
|
Exts []string `toml:"exts"`
|
|
Folders []string `toml:"folders"`
|
|
}
|