| 123456789101112131415161718192021222324252627 | package mainimport (	"fmt"	"net/http")func handler(w http.ResponseWriter, r *http.Request) {	w.Header().Set("Content-Type", "text/html")	w.Write([]byte(`		Hello World! <br />		<img src="/data/img/gopher.png" />	`))}func main() {	http.HandleFunc("/", handler)	staticHandler := http.StripPrefix(		"/data/", 		http.FileServer(http.Dir("./static")),	)	http.Handle("/data/", staticHandler)	fmt.Println("starting server at :8080")	http.ListenAndServe(":8080", nil)}
 |