working commit

This commit is contained in:
2026-05-29 19:07:59 +02:00
parent 4e2c548e97
commit c1f85e87c9
23 changed files with 543 additions and 342 deletions
+2 -2
View File
@@ -158,9 +158,9 @@ func (route Route) Match(req *http.Request) bool {
if req.Method != route.Method {
return false
}
if req.Method == http.MethodConnect {
if req.Method == http.MethodConnect {
return true
}
}
match := route.Regexp.MatchString(req.URL.Path)
if match {
return true