From 62c514fafe27fce9c3eedac19b9572accacf6ad0 Mon Sep 17 00:00:00 2001 From: namhq1989 Date: Wed, 21 Dec 2022 17:46:39 +0700 Subject: [PATCH] fix typo --- redisdb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redisdb.go b/redisdb.go index ee013d3..664868f 100644 --- a/redisdb.go +++ b/redisdb.go @@ -33,7 +33,7 @@ func Connect(uri, password string) (*Server, error) { // assign data r = &Server{rdb: rdb} - fmt.Printf("⚡️[natsio]: connected to %s \n", uri) + fmt.Printf("⚡️[redis]: connected to %s \n", uri) return r, nil }