Skip to content

Instantly share code, notes, and snippets.

@cyantarek
Created February 6, 2019 12:22
Show Gist options
  • Save cyantarek/c5c35beedb563922d3a4f2750e868a42 to your computer and use it in GitHub Desktop.
Save cyantarek/c5c35beedb563922d3a4f2750e868a42 to your computer and use it in GitHub Desktop.
package main
import "gopkg.in/macaron.v1"
func main() {
http.HandleFunc("GET", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Hello, I'm protected"))
})
log.Fatal(http.ListenAndServe(":9096", nil))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment