Go Golang to serve a specific html file

http.Handle("/", http.FileServer(http.Dir("static"))) Serves the html file in static directory. Is there any way in Go that we can specify the html file to serve? Something like render_template in