1
0
mirror of https://github.com/gofiber/fiber.git synced 2025-02-22 18:03:45 +00:00

removing useless space in the korean readme

This commit is contained in:
AnatoleLucet 2020-02-13 23:48:16 +01:00
parent d3feea9e98
commit a7866e8f20

View File

@ -203,7 +203,7 @@ func main() {
app.Static("./public") app.Static("./public")
// Last middleware // Last middleware
app.Use(func (c *fiber.Ctx) { app.Use(func(c *fiber.Ctx) {
c.SendStatus(404) // => 404 "Not Found" c.SendStatus(404) // => 404 "Not Found"
}) })
@ -223,7 +223,7 @@ func main() {
} }
// Serialize JSON // Serialize JSON
app.Get("/json", func (c *fiber.Ctx) { app.Get("/json", func(c *fiber.Ctx) {
c.JSON(&User{"John", 20}) c.JSON(&User{"John", 20})
}) })