From 6688f825749eaa99c9ebb761114717facce3c47a Mon Sep 17 00:00:00 2001 From: Alexander NeonXP Kiryukhin Date: Sun, 28 Apr 2024 00:18:36 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=B8=D0=BC=D0=B5=D0=BD=D0=B8=20=D0=BF?= =?UTF-8?q?=D0=B0=D0=BA=D0=B5=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- go.mod | 2 +- json.go | 2 +- json_test.go | 4 ++-- parser.go | 2 +- query_test.go | 4 ++-- std/factory.go | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/go.mod b/go.mod index a2a2758..431e199 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module go.neonxp.dev/json +module go.neonxp.ru/json go 1.19 diff --git a/json.go b/json.go index 0ffd7e0..5f4de0c 100644 --- a/json.go +++ b/json.go @@ -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) { diff --git a/parser.go b/parser.go index 4e006eb..c8c4262 100644 --- a/parser.go +++ b/parser.go @@ -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) {