diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-10-30 18:12:36 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-10-30 18:12:36 +0100 |
commit | 459f46bc410c8641314d5f3eb39c871558b7d156 (patch) | |
tree | 6c621946aafa2c755021b515975f1bbc6d1c7b1a /lib/agent/agent.go | |
parent | 4afc24d8b2894ca49035a4d5fa04ab2c91dc0ede (diff) |
Switch from codegangsta/cli to urfave/cli package.
Diffstat (limited to 'lib/agent/agent.go')
-rw-r--r-- | lib/agent/agent.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/agent/agent.go b/lib/agent/agent.go index 3bdd89f..e34dd63 100644 --- a/lib/agent/agent.go +++ b/lib/agent/agent.go @@ -11,9 +11,9 @@ import ( "time" "github.com/Sirupsen/logrus" - "github.com/codegangsta/cli" "github.com/iotbzh/xds-agent/lib/syncthing" "github.com/iotbzh/xds-agent/lib/xdsconfig" + "github.com/urfave/cli" ) const cookieMaxAge = "3600" |