Add go-sdk

This commit is contained in:
kolaente 2019-10-19 23:02:24 +02:00
parent 4975d09a3f
commit 6af91029d8
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 0 deletions

View File

@ -42,6 +42,8 @@ func showGoGetMeta(c echo.Context) error {
return c.Render(http.StatusOK, "goget", c.Request().URL.Path) return c.Render(http.StatusOK, "goget", c.Request().URL.Path)
case "api": case "api":
return c.Render(http.StatusOK, "goget", c.Request().URL.Path) return c.Render(http.StatusOK, "goget", c.Request().URL.Path)
case "go-sdk":
return c.Render(http.StatusOK, "goget", c.Request().URL.Path)
default: default:
return redirectToBase(c) return redirectToBase(c)
} }