package test import ( "fmt" "net/http" ) func Index(w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, "Welcome!\n") }