Closed chilarai closed 2 years ago
run to download gorilla mux library
go mod tidy
In main.go, added to test route
goMux.HandleFunc("/users/profiletest/{username}", pages.ProfileTest)
To Retrieve in username value,
fmt.Println("Got request", mux.Vars(r)["username"])
run to download gorilla mux library
In main.go, added to test route
To Retrieve in username value,