├── LICENSE ├── README.md ├── client.go ├── client_test.go ├── current_weather.go ├── current_weather_test.go ├── forecast.go ├── forecast_test.go ├── go.mod ├── go.sum ├── parsing.go ├── parsing_test.go └── time.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorMalot/omgo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorMalot/omgo/HEAD/README.md -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorMalot/omgo/HEAD/client.go -------------------------------------------------------------------------------- /client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorMalot/omgo/HEAD/client_test.go -------------------------------------------------------------------------------- /current_weather.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorMalot/omgo/HEAD/current_weather.go -------------------------------------------------------------------------------- /current_weather_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorMalot/omgo/HEAD/current_weather_test.go -------------------------------------------------------------------------------- /forecast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorMalot/omgo/HEAD/forecast.go -------------------------------------------------------------------------------- /forecast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorMalot/omgo/HEAD/forecast_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorMalot/omgo/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorMalot/omgo/HEAD/go.sum -------------------------------------------------------------------------------- /parsing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorMalot/omgo/HEAD/parsing.go -------------------------------------------------------------------------------- /parsing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorMalot/omgo/HEAD/parsing_test.go -------------------------------------------------------------------------------- /time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HectorMalot/omgo/HEAD/time.go --------------------------------------------------------------------------------