From 6af91029d8884befa8149689f81c791b89863414 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 19 Oct 2019 23:02:24 +0200 Subject: [PATCH] Add go-sdk --- main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.go b/main.go index 0398322..953977f 100644 --- a/main.go +++ b/main.go @@ -42,6 +42,8 @@ func showGoGetMeta(c echo.Context) error { return c.Render(http.StatusOK, "goget", c.Request().URL.Path) case "api": return c.Render(http.StatusOK, "goget", c.Request().URL.Path) + case "go-sdk": + return c.Render(http.StatusOK, "goget", c.Request().URL.Path) default: return redirectToBase(c) }