diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-11-28 14:19:00 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-11-30 01:36:12 +0100 |
commit | 75416fe01aa98b53c57315a050fc58f0879a238d (patch) | |
tree | 0bb2d5849fc352c839f8d6f85fdb2aa6b0aad03b /cmd-misc.go | |
parent | 5a34a70b861c9d504e9f07d3c8251c36dc2ce76c (diff) |
Used new agent lib name xaapiv1 and fix env setup.
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'cmd-misc.go')
-rw-r--r-- | cmd-misc.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd-misc.go b/cmd-misc.go index b4b579d..1a5d6d4 100644 --- a/cmd-misc.go +++ b/cmd-misc.go @@ -3,7 +3,7 @@ package main import ( "fmt" - "github.com/iotbzh/xds-agent/lib/apiv1" + "github.com/iotbzh/xds-agent/lib/xaapiv1" "github.com/urfave/cli" ) @@ -33,7 +33,7 @@ func xdsVersion(ctx *cli.Context) error { verbose := ctx.Bool("verbose") // Get version - ver := apiv1.XDSVersion{} + ver := xaapiv1.XDSVersion{} if err := XdsVersionGet(&ver); err != nil { return cli.NewExitError(err.Error(), 1) } |