I would like to have some of my query parameters be optional. As for now, I have
r.HandleFunc(\"/user\", userByValueHandler). Queries( \"usernam
Just a comment to the previous answer.
We can just add two routes there, I feel it is more readable, like below:
r.HandleFunc("/user", userByValueHandler). Queries( "username", "{username}", "email", "{email}", ). Methods("GET") r.HandleFunc("/user", UserByValueHandler).Methods("GET")