gostations/stations.go

45 lines
955 B
Go
Raw Normal View History

2021-03-16 12:32:59 +00:00
package main
2021-03-16 13:09:27 +00:00
import (
"flag"
"fmt"
"os"
)
2021-03-16 12:32:59 +00:00
func main(){
2021-03-16 13:09:27 +00:00
argCount := len(os.Args[1:])
var (
name string
country string
state string
tags string
)
flag.Usage = func() {
fmt.Printf("Usage: \n")
fmt.Printf(" gostations ")
fmt.Printf(" [-n \"name\"] [-c \"home country\"] [-s \"home state\"] [-t \"ordered,tag,list\"]\n")
flag.PrintDefaults()
fmt.Printf(" -h (or none)\n")
fmt.Printf("\tThis help message\n")
}
2021-03-16 13:09:27 +00:00
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()
}
2021-03-16 12:32:59 +00:00
stations, _ := StationSearch(name, country, state, tags)
fmt.Println(len(stations))
for _, station := range stations {
fmt.Printf("%+v\n", station)
}
2021-03-16 19:55:59 +00:00
//mainMenu = RadioMenu(station_list)
2021-03-16 12:32:59 +00:00
}