From ccea18b5c39b4cd092a70db2e19ff467addfa87f Mon Sep 17 00:00:00 2001 From: Alex Stockinger Date: Tue, 26 Jul 2022 11:21:51 +0000 Subject: [PATCH] Reorg imports --- pkg/iptables/iptables.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/iptables/iptables.go b/pkg/iptables/iptables.go index 5454f82..f72365b 100644 --- a/pkg/iptables/iptables.go +++ b/pkg/iptables/iptables.go @@ -16,7 +16,6 @@ package iptables import ( "fmt" - "github.com/prometheus/client_golang/prometheus" "io" "net" "os" @@ -26,6 +25,7 @@ import ( "github.com/coreos/go-iptables/iptables" "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" + "github.com/prometheus/client_golang/prometheus" ) const ipv6ModuleDisabledPath = "/sys/module/ipv6/parameters/disable"