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