ClubTechPro / techpro.club

Lets create an amazing portfolio for your journey into tech by contributing to open-source projects
MIT License
17 stars 9 forks source link

Gorilla Mux #99

Closed chilarai closed 2 years ago

chilarai commented 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"])