diff --git a/main.funcs.go b/main.funcs.go index c04650b..246052a 100644 --- a/main.funcs.go +++ b/main.funcs.go @@ -11,7 +11,7 @@ import ( "regexp" "strings" - "dev.jau.me/YaGo2/yago" + "github.com/Yara-Rules/yago/yago" ) const ( diff --git a/main.structs.go b/main.structs.go index c65529c..75654c0 100644 --- a/main.structs.go +++ b/main.structs.go @@ -3,7 +3,7 @@ package main import ( "fmt" - "dev.jau.me/YaGo2/yago" + "github.com/Yara-Rules/yago/yago" ) type jsonCloak struct { diff --git a/yago/grammar.go b/yago/grammar.go index eb0bf8e..1d4ea9b 100644 --- a/yago/grammar.go +++ b/yago/grammar.go @@ -6,7 +6,7 @@ import ( "os" "strconv" - "dev.jau.me/YaGo2/lexic" + "github.com/Yara-Rules/yago/lexic" "github.com/Sirupsen/logrus" ) diff --git a/yago/grammar.structs.go b/yago/grammar.structs.go index 009621f..f67d173 100644 --- a/yago/grammar.structs.go +++ b/yago/grammar.structs.go @@ -1,8 +1,8 @@ package yago import ( - "dev.jau.me/YaGo2/lexic" "github.com/Sirupsen/logrus" + "github.com/Yara-Rules/yago/lexic" ) // Types of string variables diff --git a/yago/helper.go b/yago/helper.go index 20973fc..f7a856f 100644 --- a/yago/helper.go +++ b/yago/helper.go @@ -3,7 +3,7 @@ package yago import ( "reflect" - "dev.jau.me/YaGo2/lexic" + "github.com/Yara-Rules/yago/lexic" ) func (p *Parser) addImport(item lexic.Item) bool {