Fixed type

This commit is contained in:
zloKOMAtic
2016-04-05 12:39:25 +02:00
parent 2dc1d53da5
commit 9ab08d7daf
+1 -1
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")
}
```