1
0
mirror of https://github.com/gofiber/fiber.git synced 2025-02-21 05:32:42 +00:00

Update router.go

This commit is contained in:
Fenny 2020-03-24 12:21:55 +01:00 committed by GitHub
parent 5d7b03fd37
commit 7c629dec26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ import (
// Route struct
type Route struct {
isGet bool // is GET method
isGet bool // allows HEAD requests if GET
isMiddleware bool // is middleware route
@ -266,7 +266,6 @@ func (app *Fiber) registerStatic(prefix, root string, config ...Static) {
return
}
}
// Bye
c.Next()
},
})