diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-12-22 21:26:40 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-12-22 21:29:59 +0100 |
commit | f1c182ede3c4aed0d6196d05b0a64ff93372e755 (patch) | |
tree | 2cf95732a06808aac8325bccb5199346b33165a2 /lib/xdsserver/apiv1.go | |
parent | 285332c351777b74abca638b8b2a2cde3c68edc6 (diff) |
Added SDKs management support.
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'lib/xdsserver/apiv1.go')
-rw-r--r-- | lib/xdsserver/apiv1.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/xdsserver/apiv1.go b/lib/xdsserver/apiv1.go index 143c25f..f9d5948 100644 --- a/lib/xdsserver/apiv1.go +++ b/lib/xdsserver/apiv1.go @@ -48,6 +48,9 @@ func NewAPIV1(ctx *Context) *APIService { s.apiRouter.GET("/sdks", s.getSdks) s.apiRouter.GET("/sdks/:id", s.getSdk) + s.apiRouter.POST("/sdks", s.installSdk) + s.apiRouter.POST("/sdks/abortinstall", s.abortInstallSdk) + s.apiRouter.DELETE("/sdks/:id", s.removeSdk) s.apiRouter.POST("/make", s.buildMake) s.apiRouter.POST("/make/:id", s.buildMake) |