From ea3b17feb2eb2d54bbc27dc75eee60bd1fe67d27 Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Mon, 26 Jun 2017 18:54:13 +0200 Subject: Use xds-common go library. --- lib/apiv1/agent.go | 2 +- lib/apiv1/config.go | 2 +- lib/apiv1/exec.go | 2 +- lib/apiv1/folders.go | 2 +- lib/apiv1/make.go | 2 +- lib/apiv1/sdks.go | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) (limited to 'lib/apiv1') diff --git a/lib/apiv1/agent.go b/lib/apiv1/agent.go index b693608..651f246 100644 --- a/lib/apiv1/agent.go +++ b/lib/apiv1/agent.go @@ -8,7 +8,7 @@ import ( "path/filepath" "github.com/gin-gonic/gin" - "github.com/iotbzh/xds-agent/lib/common" + common "github.com/iotbzh/xds-common/golib" ) type XDSAgentTarball struct { diff --git a/lib/apiv1/config.go b/lib/apiv1/config.go index 326b6fa..662ec8e 100644 --- a/lib/apiv1/config.go +++ b/lib/apiv1/config.go @@ -5,7 +5,7 @@ import ( "sync" "github.com/gin-gonic/gin" - "github.com/iotbzh/xds-server/lib/common" + common "github.com/iotbzh/xds-common/golib" "github.com/iotbzh/xds-server/lib/xdsconfig" ) diff --git a/lib/apiv1/exec.go b/lib/apiv1/exec.go index 4994b27..654ff64 100644 --- a/lib/apiv1/exec.go +++ b/lib/apiv1/exec.go @@ -7,7 +7,7 @@ import ( "time" "github.com/gin-gonic/gin" - "github.com/iotbzh/xds-server/lib/common" + common "github.com/iotbzh/xds-common/golib" ) // ExecArgs JSON parameters of /exec command diff --git a/lib/apiv1/folders.go b/lib/apiv1/folders.go index b4d2ac0..44bda24 100644 --- a/lib/apiv1/folders.go +++ b/lib/apiv1/folders.go @@ -5,7 +5,7 @@ import ( "strconv" "github.com/gin-gonic/gin" - "github.com/iotbzh/xds-server/lib/common" + common "github.com/iotbzh/xds-common/golib" "github.com/iotbzh/xds-server/lib/xdsconfig" ) diff --git a/lib/apiv1/make.go b/lib/apiv1/make.go index 77f9ec3..5cd98c6 100644 --- a/lib/apiv1/make.go +++ b/lib/apiv1/make.go @@ -9,7 +9,7 @@ import ( "strconv" "github.com/gin-gonic/gin" - "github.com/iotbzh/xds-server/lib/common" + common "github.com/iotbzh/xds-common/golib" ) // MakeArgs is the parameters (json format) of /make command diff --git a/lib/apiv1/sdks.go b/lib/apiv1/sdks.go index 5ae2b03..52af506 100644 --- a/lib/apiv1/sdks.go +++ b/lib/apiv1/sdks.go @@ -5,7 +5,7 @@ import ( "strconv" "github.com/gin-gonic/gin" - "github.com/iotbzh/xds-server/lib/common" + common "github.com/iotbzh/xds-common/golib" ) // getSdks returns all SDKs configuration -- cgit 1.2.3-korg