From 0a755afa6123506d1761b88884fa30aa948472d7 Mon Sep 17 00:00:00 2001 From: Sina Date: Wed, 24 Apr 2024 16:09:49 +0330 Subject: [PATCH] fix lint issue --- Makefile | 2 +- surveyor/jetstream_configs.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 1cb0458..67cb801 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -drepo ?= natsio +drepo ?= sinamna .PHONY: dockerx test dockerx: diff --git a/surveyor/jetstream_configs.go b/surveyor/jetstream_configs.go index 1afe106..16646b2 100644 --- a/surveyor/jetstream_configs.go +++ b/surveyor/jetstream_configs.go @@ -16,12 +16,12 @@ package surveyor import ( "context" "fmt" - "github.com/nats-io/nats.go" - _ "github.com/nats-io/nats.go" "strconv" "sync" "time" + "github.com/nats-io/nats.go" + "github.com/prometheus/client_golang/prometheus" "github.com/sirupsen/logrus" )