github.com/shivakar/gdupes@v0.0.0-20180726052558-d5c070c306d0/gdupes/config.go (about)

     1  package gdupes
     2  
     3  import "io"
     4  
     5  const VERSION = "0.1.0"
     6  
     7  // Config structure to store
     8  type Config struct {
     9  	Directories  []string
    10  	Recurse      bool
    11  	Symlinks     bool
    12  	Hardlinks    bool
    13  	NoEmpty      bool
    14  	NoHidden     bool
    15  	Sameline     bool
    16  	Size         bool
    17  	Summarize    bool
    18  	Quiet        bool
    19  	PrintVersion bool
    20  	NumWorkers   int
    21  	Writer       io.Writer
    22  }