Обновление имени пакета

This commit is contained in:
Alexander NeonXP Kiryukhin 2024-04-28 00:18:36 +03:00
parent 67d30e9444
commit 6688f82574
Signed by: NeonXP
GPG Key ID: 35E33E1AB7776B39
6 changed files with 8 additions and 8 deletions

2
go.mod
View File

@ -1,3 +1,3 @@
module go.neonxp.dev/json
module go.neonxp.ru/json
go 1.19

View File

@ -3,7 +3,7 @@ package json
import (
"fmt"
"go.neonxp.dev/json/internal/lexer"
"go.neonxp.ru/json/internal/lexer"
)
type JSON struct {

View File

@ -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) {

View File

@ -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) {

View File

@ -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) {

View File

@ -5,7 +5,7 @@ import (
"strconv"
"strings"
"go.neonxp.dev/json"
"go.neonxp.ru/json"
)
func Factory(typ json.NodeType) (json.Node, error) {