From ecf3e5f89135c9234a41210c645990917212b40d Mon Sep 17 00:00:00 2001 From: N0el4kLs <1332210141@qq.com> Date: Sun, 24 Mar 2024 18:40:53 +0800 Subject: [PATCH] fix: fix package name --- engine.go | 6 +++--- example/example.go | 4 ++-- go.mod | 2 +- sources/fofa/fofa.go | 2 +- sources/quake/quake.go | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/engine.go b/engine.go index 7298a6f..e16aadd 100644 --- a/engine.go +++ b/engine.go @@ -5,9 +5,9 @@ import ( "fmt" "sync" - "N0el4kLs/cyberetrieve/sources" - "N0el4kLs/cyberetrieve/sources/fofa" - "N0el4kLs/cyberetrieve/sources/quake" + "github.com/N0el4kLs/cyberetrieve/sources" + "github.com/N0el4kLs/cyberetrieve/sources/fofa" + "github.com/N0el4kLs/cyberetrieve/sources/quake" "github.com/projectdiscovery/gologger" ) diff --git a/example/example.go b/example/example.go index fb7a1f1..d8002dd 100644 --- a/example/example.go +++ b/example/example.go @@ -3,8 +3,8 @@ package main import ( "fmt" - "N0el4kLs/cyberetrieve" - "N0el4kLs/cyberetrieve/sources" + "github.com/N0el4kLs/cyberetrieve" + "github.com/N0el4kLs/cyberetrieve/sources" ) func main() { diff --git a/go.mod b/go.mod index f785cd1..8cefaee 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module N0el4kLs/cyberetrieve +module github.com/N0el4kLs/cyberetrieve go 1.21 diff --git a/sources/fofa/fofa.go b/sources/fofa/fofa.go index c1e5510..058aba1 100644 --- a/sources/fofa/fofa.go +++ b/sources/fofa/fofa.go @@ -6,7 +6,7 @@ import ( "strconv" "strings" - "N0el4kLs/cyberetrieve/sources" + "github.com/N0el4kLs/cyberetrieve/sources" "github.com/projectdiscovery/gologger" ) diff --git a/sources/quake/quake.go b/sources/quake/quake.go index e6e89e4..564d7a5 100644 --- a/sources/quake/quake.go +++ b/sources/quake/quake.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - "N0el4kLs/cyberetrieve/sources" + "github.com/N0el4kLs/cyberetrieve/sources" "github.com/projectdiscovery/gologger" )