remove lib color

This commit is contained in:
namhq1989 2022-11-16 09:53:19 +07:00
parent dfdd151282
commit 8a44d79ff0
3 changed files with 2 additions and 8 deletions

5
go.mod
View File

@ -2,7 +2,4 @@ module git.selly.red/Selly-Modules/zookeeper
go 1.16
require (
github.com/logrusorgru/aurora v2.0.3+incompatible
github.com/samuel/go-zookeeper v0.0.0-20201211165307-7117e9ea2414
)
require github.com/samuel/go-zookeeper v0.0.0-20201211165307-7117e9ea2414

2
go.sum
View File

@ -1,4 +1,2 @@
github.com/logrusorgru/aurora v2.0.3+incompatible h1:tOpm7WcpBTn4fjmVfgpQq0EfczGlG91VSDkswnjF5A8=
github.com/logrusorgru/aurora v2.0.3+incompatible/go.mod h1:7rIyQOR62GCctdiQpZ/zOJlFyk6y+94wXzv6RNZgaR4=
github.com/samuel/go-zookeeper v0.0.0-20201211165307-7117e9ea2414 h1:AJNDS0kP60X8wwWFvbLPwDuojxubj9pbfK7pjHw0vKg=
github.com/samuel/go-zookeeper v0.0.0-20201211165307-7117e9ea2414/go.mod h1:gi+0XIa01GRL2eRQVjQkKGqKF3SF9vZR/HnPullcV2E=

View File

@ -4,7 +4,6 @@ import (
"fmt"
"time"
"github.com/logrusorgru/aurora"
"github.com/samuel/go-zookeeper/zk"
)
@ -18,7 +17,7 @@ func Connect(uri string) error {
return err
}
fmt.Println(aurora.Green("*** CONNECTED TO ZOOKEEPER: " + uri))
fmt.Printf("⚡️[zookeeper]: connected to %s \n", uri)
// Set client
zkClient = c