Update README_NEW.md

pull/85/head
Fenny 2020-02-08 12:28:57 -05:00 committed by GitHub
parent ee0bdc7cef
commit e03b7fc696
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 5 deletions

View File

@ -14,15 +14,12 @@ package main
import "github.com/gofiber/fiber"
func main() {
// Create new Fiber instance
app := fiber.New()
// Create new route with GET method
app.Get("/", func(c *fiber.Ctx) {
c.Write("Hello, World!")
c.Send("Hello, World!")
})
// Start server on http://localhost:3000
app.Listen(3000)
}
```