removing useless space in the russian readme

pull/140/head
AnatoleLucet 2020-02-13 23:49:33 +01:00
parent 58cd2fd8b3
commit 8cd8b084b8
1 changed files with 2 additions and 2 deletions

View File

@ -204,7 +204,7 @@ func main() {
app.Static("./public")
// Последний middleware
app.Use(func (c *fiber.Ctx) {
app.Use(func(c *fiber.Ctx) {
c.SendStatus(404) // => 404 "Not Found"
})
@ -224,7 +224,7 @@ func main() {
}
// Сериализация JSON
app.Get("/json", func (c *fiber.Ctx) {
app.Get("/json", func(c *fiber.Ctx) {
c.JSON(&User{"John", 20})
})