setup comamnd line argument parsing

This commit is contained in:
Greg Gauthier 2021-03-16 13:09:27 +00:00
parent 237155552a
commit 70c0204128
2 changed files with 31 additions and 5 deletions

3
browser.go Normal file
View File

@ -0,0 +1,3 @@
package main

View File

@ -1,12 +1,35 @@
package main
import "fmt"
import (
"flag"
"fmt"
"os"
)
func main(){
fmt.Println(api())
fmt.Println(player())
fmt.Println(options())
fmt.Println(maxitems())
fmt.Println("Configuration values:")
fmt.Println("api url: ", api())
fmt.Println("player command: ", player())
fmt.Println("player options: ", options())
fmt.Println("maximum menu items: ", maxitems())
argCount := len(os.Args[1:])
var (
name string
country string
state string
tags string
)
flag.StringVar(&name, "n", "", "Station name (or identifier).")
flag.StringVar(&country, "c", "", "Home country.")
flag.StringVar(&state, "s", "", "Home state (if in the United States).")
flag.StringVar(&tags, "t", "", "Tag (or comma-separated tag list)")
flag.Parse()
if argCount == 0 {
flag.Usage()
}
}