1
0
mirror of https://github.com/labstack/echo.git synced 2024-11-24 08:22:21 +02:00

Fixed type

This commit is contained in:
zloKOMAtic 2016-04-05 12:39:25 +02:00
parent 2dc1d53da5
commit 9ab08d7daf

View File

@ -100,7 +100,7 @@ func getUser(c echo.Context) error {
func show(c echo.Context) error {
// Get team and member from the query string
team := c.QueryParam("team")
member := c.QueryParam("team")
member := c.QueryParam("member")
}
```