Added configuration flags

This commit is contained in:
Pijus Kamandulis
2019-04-20 22:30:42 +03:00
parent 39d14eaf7a
commit e13f98eb4a
3 changed files with 34 additions and 10 deletions

29
structs/config.go Normal file
View File

@@ -0,0 +1,29 @@
package structs
import (
"flag"
"fmt"
"os"
)
// Config - Runtime configuration
var Config struct {
FeedURL string
OutputPath string
}
// GetConfig - Returns Config object
func GetConfig() {
outputPath := flag.String("output", ".", "Output path")
flag.Parse()
args := flag.Args()
if len(args) < 1 {
fmt.Println("Usage: rss-dl [OPTIONS] FEED_URL")
os.Exit(2)
}
Config.FeedURL = flag.Args()[len(args)-1]
Config.OutputPath = *outputPath
}