February 2018
Intermediate to advanced
340 pages
9h 43m
English
Hi, Go is awesome!
<html> <body> Hi, I'm HTML body for index.html! </body> </html>
package main import ( "net/http" ) func main() { fileSrv := http.FileServer(http.Dir("html")) fileSrv = http.StripPrefix("/html", fileSrv) http.HandleFunc("/welcome", serveWelcome) http.Handle("/html/", fileSrv) http.ListenAndServe(":8080", nil) } func serveWelcome(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, "welcome.txt") }Read now
Unlock full access