From 2f7828d01f4c4ca2909f95f098627cd5475ed225 Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Wed, 29 Nov 2017 08:54:00 +0100 Subject: Refit source files to have a public xs-apiv1 lib package. Signed-off-by: Sebastien Douheret --- lib/apiv1/sdks.go | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 lib/apiv1/sdks.go (limited to 'lib/apiv1/sdks.go') diff --git a/lib/apiv1/sdks.go b/lib/apiv1/sdks.go deleted file mode 100644 index f67a0ef..0000000 --- a/lib/apiv1/sdks.go +++ /dev/null @@ -1,29 +0,0 @@ -package apiv1 - -import ( - "net/http" - - "github.com/gin-gonic/gin" - common "github.com/iotbzh/xds-common/golib" -) - -// getSdks returns all SDKs configuration -func (s *APIService) getSdks(c *gin.Context) { - c.JSON(http.StatusOK, s.sdks.GetAll()) -} - -// getSdk returns a specific Sdk configuration -func (s *APIService) getSdk(c *gin.Context) { - id, err := s.sdks.ResolveID(c.Param("id")) - if err != nil { - common.APIError(c, err.Error()) - return - } - sdk := s.sdks.Get(id) - if sdk.Profile == "" { - common.APIError(c, "Invalid id") - return - } - - c.JSON(http.StatusOK, sdk) -} -- cgit 1.2.3-korg