mux icon indicating copy to clipboard operation
mux copied to clipboard

A high performance and powerful trie based url path router for Go.

Results 4 mux issues
Sort by recently updated
recently updated
newest added

there are two conflict router: ``` GET /v1/team/:tid/duty GET /v1/team/:svc/info ``` the secode route will not match ``` package main import ( "log" "net/http" "github.com/beego/mux" ) func main() { m...

RT。 如果继续的话,能增加表单,或者 query 参数的读取吗?

添加了3个方法,用于修改allowSuffixExt。以便于使用者可以根据实际情况增加和修改后缀

Is there any plan to support middleware?