diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-06-26 18:54:13 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-06-26 18:54:13 +0200 |
commit | ea3b17feb2eb2d54bbc27dc75eee60bd1fe67d27 (patch) | |
tree | 2b5039efbee54eb6f2f0c8605ad3d6f8bca4c284 /lib/xdsconfig | |
parent | 2d3e49e1e92206147b6ab7b191e525fa3ac6f2a5 (diff) |
Use xds-common go library.
Diffstat (limited to 'lib/xdsconfig')
-rw-r--r-- | lib/xdsconfig/config.go | 2 | ||||
-rw-r--r-- | lib/xdsconfig/fileconfig.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/xdsconfig/config.go b/lib/xdsconfig/config.go index 5ada35f..f2d0710 100644 --- a/lib/xdsconfig/config.go +++ b/lib/xdsconfig/config.go @@ -7,7 +7,7 @@ import ( "github.com/Sirupsen/logrus" "github.com/codegangsta/cli" - "github.com/iotbzh/xds-server/lib/common" + common "github.com/iotbzh/xds-common/golib" ) // Config parameters (json format) of /config command diff --git a/lib/xdsconfig/fileconfig.go b/lib/xdsconfig/fileconfig.go index 99e5382..90c1aad 100644 --- a/lib/xdsconfig/fileconfig.go +++ b/lib/xdsconfig/fileconfig.go @@ -8,7 +8,7 @@ import ( "path/filepath" "strings" - "github.com/iotbzh/xds-server/lib/common" + common "github.com/iotbzh/xds-common/golib" ) type SyncThingConf struct { |