...

Source file src/github.com/concurrency-8/args/args.go

Documentation: github.com/concurrency-8/args

     1  package args
     2  
     3  type Args struct {
     4  	FilePath         []string
     5  	DownloadPath     string
     6  	ResumeCapability bool
     7  	Resume           bool
     8  	Verbose          bool
     9  }
    10  
    11  var ARGS = &Args{make([]string, 0), "", true, false, true}
    12  

View as plain text