Update whats_new.md

pull/3285/head
Juan Calderon-Perez 2025-01-19 02:38:34 -05:00 committed by GitHub
parent 1dedc8034c
commit 927e3b3266
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -426,11 +426,11 @@ malicious connections before the server establishes a connection.
```go
app.Get("/", func(c fiber.Ctx) error {
if c.IP() == "192.168.1.1" {
return c.Drop()
}
if c.IP() == "192.168.1.1" {
return c.Drop()
}
return c.SendString("Hello World!")
return c.SendString("Hello World!")
})
```