diff --git a/cmd/root.go b/cmd/root.go index 4f5b924..d62e050 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -5,7 +5,7 @@ import ( "os" "time" - "github.com/scyllabd/termtables" + "github.com/scylladb/termtables" "github.com/jezman/libgorion" "github.com/spf13/cobra" ) diff --git a/go.mod b/go.mod index b3ecd9f..af9115b 100644 --- a/go.mod +++ b/go.mod @@ -8,6 +8,7 @@ require ( github.com/inconshreveable/mousetrap v1.0.0 // indirect github.com/jezman/libgorion v0.1.5 github.com/mattn/go-runewidth v0.0.3 // indirect + github.com/scylladb/termtables v1.0.0 github.com/spf13/cobra v0.0.3 github.com/spf13/pflag v1.0.3 // indirect golang.org/x/crypto v0.0.0-20181112202954-3d3f9f413869 // indirect diff --git a/go.sum b/go.sum index d3f97b8..4a9273a 100644 --- a/go.sum +++ b/go.sum @@ -26,6 +26,8 @@ github.com/jezman/libgorion v0.1.5 h1:gIsY3+RtPPpdPcbUehZHLXYNpQl1AnlN6bgZBzWwlU github.com/jezman/libgorion v0.1.5/go.mod h1:PqCXqlJJzalgSi2MsUgPVYqUkplMb7dPf/LuABK2qIQ= github.com/mattn/go-runewidth v0.0.3 h1:a+kO+98RDGEfo6asOGMmpodZq4FNtnGP54yps8BzLR4= github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= +github.com/scylladb/termtables v1.0.0 h1:uUnesUY4V1VPCotpOQLb1LjTXVvzwy7Ramx8K8+w+8U= +github.com/scylladb/termtables v1.0.0/go.mod h1:C1a7PQSMz9NShzorzCiG2fk9+xuCgLkPeCvMHYR2OWg= github.com/spf13/cobra v0.0.3 h1:ZlrZ4XsMRm04Fr5pSFxBgfND2EBVa1nLpiy1stUsX/8= github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= github.com/spf13/pflag v1.0.3 h1:zPAT6CGy6wXeQ7NtTnaTerfKOsV6V6F8agHXFiazDkg= diff --git a/render/tables.go b/render/tables.go index ad25063..88c6655 100644 --- a/render/tables.go +++ b/render/tables.go @@ -1,7 +1,7 @@ package render import ( - "github.com/scyllabd/termtables" + "github.com/scylladb/termtables" "github.com/jezman/libgorion" )