func startHTTP()

in go/cmd/server/server.go [67:71]


func startHTTP() error {
	fmt.Println("Listening on port 8081...")
	http.HandleFunc("/", handleStrings)
	return http.ListenAndServe(":8081", nil)
}