More cleanup

This commit is contained in:
Fenny 2020-02-12 04:47:28 +01:00
parent 4b604b1af7
commit a9aba57e41
3 changed files with 8 additions and 4 deletions

View File

@ -18,7 +18,10 @@ assignees: ""
```go
package main
func main() {
import "github.com/gofiber/fiber"
func main() {
app := fiber.New()
// ..
}
```

View File

@ -12,7 +12,10 @@ assignees: ""
```go
package main
func main() {
import "github.com/gofiber/fiber"
func main() {
app := fiber.New()
// ..
}
```

View File

@ -303,8 +303,6 @@ func (app *Application) Static(args ...string) {
midware = true
}
fmt.Println(prefix)
// Lets get all files from root
files, _, err := getFiles(root)
if err != nil {