commit 51b5d63eecb271035c53de749c904a7b0b27d962 Author: Greg Gauthier Date: Tue Mar 16 07:34:04 2021 +0000 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a6e040c --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.idea/ +build/ +vendor/ + diff --git a/README.md b/README.md new file mode 100644 index 0000000..d36b15e --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# GoStations +### console based radio station selector and player +#### Retrieves station data from radio-browser.info, and presents a menu of playable stations + +This is a port of a Python script I wrote, called "radiostations" + + diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..24cad62 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module gostations + +go 1.16 diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..e69de29