From acba2cf96b74872465c4b465227dd0d13d4ae87c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alo=C3=AFs=20Micard?= Date: Thu, 9 Apr 2020 08:36:47 +0200 Subject: [PATCH] Refactor to use scylladb/termtables As you may all already know, apcera/termtables has come to a end. This commit refactor to use the fork from scylladb. ScyllaDB is an organization, so there's less chance that their own fork goes offline too. --- README.md | 2 +- dateparse/main.go | 2 +- example/main.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 005e456..2a62105 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ import ( "fmt" "time" - "github.com/apcera/termtables" + "github.com/scylladb/termtables" "github.com/araddon/dateparse" ) diff --git a/dateparse/main.go b/dateparse/main.go index ca534d0..6c3c20a 100644 --- a/dateparse/main.go +++ b/dateparse/main.go @@ -6,7 +6,7 @@ import ( "os" "time" - "github.com/apcera/termtables" + "github.com/scylladb/termtables" "github.com/araddon/dateparse" ) diff --git a/example/main.go b/example/main.go index 413c9b8..8cdbbc9 100644 --- a/example/main.go +++ b/example/main.go @@ -5,7 +5,7 @@ import ( "fmt" "time" - "github.com/apcera/termtables" + "github.com/scylladb/termtables" "github.com/araddon/dateparse" )