November 2019
Intermediate to advanced
474 pages
7h 46m
English
About
This section is included to assist the students to perform the activities in the book.
It includes detailed steps that are to be performed by the students to achieve the objectives of the activities.
Solution:
Execute the following steps to complete this activity:
This code is the entry point of the application where functions are registered, and the main application is started:
package main
import (
"fmt"
"net/http"
)
func main() {
fmt.Println("Starting the 🚲 finder..")
http.HandleFunc("/", FindBikes)
fmt.Println("Function handlers are registered.")