Skip to content

Instantly share code, notes, and snippets.

@yuyalush
Created August 10, 2017 02:04
Show Gist options
  • Save yuyalush/e84c9e6683910ab5ed476eafc85e8fc5 to your computer and use it in GitHub Desktop.
Save yuyalush/e84c9e6683910ab5ed476eafc85e8fc5 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"net/http"
)
func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "%s", r.URL.Path[1:])
fmt.Println("Request: %s", r.URL.Path[1:])
}
func main() {
http.HandleFunc("/",handler)
fmt.Println("Server Ready...")
http.ListenAndServe(":8080",nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment