rss-dl/structs/config.go

30 lines
460 B
Go

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
}