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

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 go 1.19

View File

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

View File

@ -4,8 +4,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"go.neonxp.dev/json" "go.neonxp.ru/json"
"go.neonxp.dev/json/std" "go.neonxp.ru/json/std"
) )
func TestJSON_Unmarshal(t *testing.T) { func TestJSON_Unmarshal(t *testing.T) {

View File

@ -5,7 +5,7 @@ import (
"strconv" "strconv"
"strings" "strings"
"go.neonxp.dev/json/internal/lexer" "go.neonxp.ru/json/internal/lexer"
) )
func (j *JSON) parse(ch chan lexer.Lexem) (Node, error) { func (j *JSON) parse(ch chan lexer.Lexem) (Node, error) {

View File

@ -4,8 +4,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"go.neonxp.dev/json" "go.neonxp.ru/json"
"go.neonxp.dev/json/std" "go.neonxp.ru/json/std"
) )
func TestMustQuery(t *testing.T) { func TestMustQuery(t *testing.T) {

View File

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