cmd/lncli: switch to urfave/cli instead of codegangsta/cli

The original project has been migrated to a new user. Currently git
redirects are served from the old repository to the newness. However
since development has witched to this new repository we update our
imports for clarity.
This commit is contained in:
Olaoluwa Osuntokun 2016-07-26 10:42:35 -07:00
parent c69661f2a5
commit 7c1ec62e44
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2
2 changed files with 2 additions and 2 deletions

@ -9,9 +9,9 @@ import (
"os"
"strings"
"github.com/codegangsta/cli"
"github.com/lightningnetwork/lnd/lnrpc"
"github.com/roasbeef/btcd/wire"
"github.com/urfave/cli"
"golang.org/x/net/context"
)

@ -4,8 +4,8 @@ import (
"fmt"
"os"
"github.com/codegangsta/cli"
"github.com/lightningnetwork/lnd/lnrpc"
"github.com/urfave/cli"
"google.golang.org/grpc"
)