Skip to content

Commit 8a77ec6

Browse files
author
temphiza
committed
feat: change module declaration.
1 parent 4d65282 commit 8a77ec6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

example_client_test.go

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@ package redis_timeseries_go_test
22

33
import (
44
"fmt"
5-
redistimeseries "github.com/RedisTimeSeries/redistimeseries-go"
65
"github.com/gomodule/redigo/redis"
6+
redistimeseries "github.com/temphiza/redistimeseries-go"
77
"log"
88
"time"
99
)
1010

1111
// exemplifies the NewClientFromPool function
12+
//
1213
//nolint:errcheck
1314
func ExampleNewClientFromPool() {
1415
host := "localhost:6379"
@@ -767,8 +768,9 @@ func ExampleClient_MultiReverseRangeWithOptions_selectedLabels() {
767768
// Ranges: [{selected-labels-ex-time-serie-1 map[az:us-east-1 location:SF] [{4 2} {2 1}]} {selected-labels-ex-time-serie-2 map[az:us-east-1 location:NY] [{4 15} {1 10}]}]
768769
}
769770

770-
//nolint:errcheck
771771
// Exemplifies the usage of MultiGetWithOptions function while using the default MultiGetOptions and while using user defined MultiGetOptions.
772+
//
773+
//nolint:errcheck
772774
func ExampleClient_MultiGetWithOptions() {
773775
host := "localhost:6379"
774776
password := ""
@@ -859,6 +861,7 @@ func ExampleClient_MultiAdd() {
859861
}
860862

861863
// exemplifies the usage of DeleteSerie function
864+
//
862865
//nolint:errcheck
863866
func ExampleClient_DeleteSerie() {
864867
host := "localhost:6379"
@@ -882,6 +885,7 @@ func ExampleClient_DeleteSerie() {
882885
}
883886

884887
// exemplifies the usage of DeleteRange function
888+
//
885889
//nolint:errcheck
886890
func ExampleClient_DeleteRange() {
887891
host := "localhost:6379"

0 commit comments

Comments
 (0)