Merge pull request #2867 from grivera64/v2

📚 Doc: Fix code snippet indentation in /docs/api/middleware/keyauth.md
pull/2883/head
Juan Calderon-Perez 2024-02-18 21:40:18 -05:00 committed by GitHub
commit cf54c257e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ func main() {
Validator: validateAPIKey,
}))
app.Get("/", func(c *fiber.Ctx) error {
app.Get("/", func(c *fiber.Ctx) error {
return c.SendString("Successfully authenticated!")
})