Add files via upload

pull/6/head
Fenny 2020-01-07 11:28:06 -05:00 committed by GitHub
parent ef44e0345b
commit 457fabd625
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -127,6 +127,11 @@ func (r *Fiber) Get(args ...interface{}) {
r.register("GET", args...)
}
// Use :
func (r *Fiber) Use(args ...interface{}) {
r.register("*", args...)
}
// All :
func (r *Fiber) All(args ...interface{}) {
r.register("*", args...)