Simple Golang WebServer
Webserver is running. One can use curl to interact with it
curl http://localhost:3080
Hello, /
curl http://localhost:3080/jimmy
Hello, jimmy
Docker
docker build -t golang-webserver .
docker images
docker run -d -p 3080:3080 golang-webserver
To implement
Using Echo Framework
Medium making http request
`resp, err := http.Get("https://httpbin.org/get")`