For example there are two url
http://user1?test
http://user1?test1
I want to route "http://user1?test
" to func1()
and http://user1?test1
to func2()
.
so i have used gin router for routing the request. its like router.POST("/user1?test",func()) but GIN is considering till "/user1" its not considering where "?" comes into picture. In short is it like GIN only considers "/" only not "?".