From 07fc274895ca011121b8eb340ea618c2ef170833 Mon Sep 17 00:00:00 2001 From: Gregory Boddin Date: Sun, 26 Jul 2020 17:58:43 +0200 Subject: [PATCH] Fix imports --- cmd/leakix/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/leakix/main.go b/cmd/leakix/main.go index 38aae9c..d4a9e32 100644 --- a/cmd/leakix/main.go +++ b/cmd/leakix/main.go @@ -3,8 +3,8 @@ package main import ( "flag" "fmt" - "gitlab.nobody.run/tbi/LeakIXClient" - "html/template" + "github.com/LeakIX/LeakIXClient" + "text/template" "log" "os" )