diff options
author | Alexander NeonXP Kiryukhin <i@neonxp.ru> | 2024-04-28 00:18:36 +0300 |
---|---|---|
committer | Alexander NeonXP Kiryukhin <i@neonxp.ru> | 2024-04-28 00:18:36 +0300 |
commit | 6688f825749eaa99c9ebb761114717facce3c47a (patch) | |
tree | e10036178bcd7ade74ee50f0c8b82b2399386d07 | |
parent | 67d30e9444c7bdae62906477cafb5f992c5b70e1 (diff) |
Обновление имени пакета
-rw-r--r-- | go.mod | 2 | ||||
-rw-r--r-- | json.go | 2 | ||||
-rw-r--r-- | json_test.go | 4 | ||||
-rw-r--r-- | parser.go | 2 | ||||
-rw-r--r-- | query_test.go | 4 | ||||
-rw-r--r-- | std/factory.go | 2 |
6 files changed, 8 insertions, 8 deletions
@@ -1,3 +1,3 @@ -module go.neonxp.dev/json +module go.neonxp.ru/json go 1.19 @@ -3,7 +3,7 @@ package json import ( "fmt" - "go.neonxp.dev/json/internal/lexer" + "go.neonxp.ru/json/internal/lexer" ) type JSON struct { diff --git a/json_test.go b/json_test.go index b058417..74fbbed 100644 --- a/json_test.go +++ b/json_test.go @@ -4,8 +4,8 @@ import ( "reflect" "testing" - "go.neonxp.dev/json" - "go.neonxp.dev/json/std" + "go.neonxp.ru/json" + "go.neonxp.ru/json/std" ) func TestJSON_Unmarshal(t *testing.T) { @@ -5,7 +5,7 @@ import ( "strconv" "strings" - "go.neonxp.dev/json/internal/lexer" + "go.neonxp.ru/json/internal/lexer" ) func (j *JSON) parse(ch chan lexer.Lexem) (Node, error) { diff --git a/query_test.go b/query_test.go index 44383de..3859540 100644 --- a/query_test.go +++ b/query_test.go @@ -4,8 +4,8 @@ import ( "reflect" "testing" - "go.neonxp.dev/json" - "go.neonxp.dev/json/std" + "go.neonxp.ru/json" + "go.neonxp.ru/json/std" ) func TestMustQuery(t *testing.T) { diff --git a/std/factory.go b/std/factory.go index 11c3de1..39e5c0a 100644 --- a/std/factory.go +++ b/std/factory.go @@ -5,7 +5,7 @@ import ( "strconv" "strings" - "go.neonxp.dev/json" + "go.neonxp.ru/json" ) func Factory(typ json.NodeType) (json.Node, error) { |