labstack / echox

Echo cookbook and website
https://echo.labstack.com
MIT License
406 stars 286 forks source link

Fix err declaration on echo binding example #293

Closed adilsitos closed 11 months ago

adilsitos commented 11 months ago

Changes the syntax from err = c.Bind(u) to err := c.Bind(c), the former does not compile because err was not defined yet.

aldas commented 11 months ago

Thanks