diff --git a/go.mod b/go.mod index 7d1f2fb..edafcc5 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/katydid/validator-go +module github.com/katydid/parser-go go 1.23 diff --git a/parser/debug/log.go b/parser/debug/log.go index 98b1178..c24aa35 100644 --- a/parser/debug/log.go +++ b/parser/debug/log.go @@ -22,7 +22,7 @@ import ( "strconv" "time" - "github.com/katydid/validator-go/parser" + "github.com/katydid/parser-go/parser" ) // Logger is an interface for a type that is made to log debug info. diff --git a/parser/debug/value.go b/parser/debug/value.go index bd20fda..c9683e0 100644 --- a/parser/debug/value.go +++ b/parser/debug/value.go @@ -15,7 +15,7 @@ package debug import ( - "github.com/katydid/validator-go/parser" + "github.com/katydid/parser-go/parser" ) type errValue struct{} diff --git a/parser/debug/walk.go b/parser/debug/walk.go index 72cbdaf..01e36b6 100644 --- a/parser/debug/walk.go +++ b/parser/debug/walk.go @@ -21,7 +21,7 @@ import ( "strings" "time" - "github.com/katydid/validator-go/parser" + "github.com/katydid/parser-go/parser" ) func getValue(p parser.Interface) interface{} { diff --git a/parser/json/json.go b/parser/json/json.go index cb961ac..421cb6a 100644 --- a/parser/json/json.go +++ b/parser/json/json.go @@ -21,7 +21,7 @@ import ( "io" "strconv" - "github.com/katydid/validator-go/parser" + "github.com/katydid/parser-go/parser" ) // ErrUnquote returns an error that resulted from trying to unquote a string. diff --git a/parser/json/json_test.go b/parser/json/json_test.go index e7da9df..866e342 100644 --- a/parser/json/json_test.go +++ b/parser/json/json_test.go @@ -18,8 +18,8 @@ import ( "encoding/json" "testing" - "github.com/katydid/validator-go/parser/debug" - sjson "github.com/katydid/validator-go/parser/json" + "github.com/katydid/parser-go/parser/debug" + sjson "github.com/katydid/parser-go/parser/json" ) func TestDebug(t *testing.T) { diff --git a/parser/reflect/reflect.go b/parser/reflect/reflect.go index a3ee050..16f0966 100644 --- a/parser/reflect/reflect.go +++ b/parser/reflect/reflect.go @@ -19,7 +19,7 @@ import ( "io" "reflect" - "github.com/katydid/validator-go/parser" + "github.com/katydid/parser-go/parser" ) type state struct { diff --git a/parser/reflect/reflect_test.go b/parser/reflect/reflect_test.go index c3e381d..b19f139 100644 --- a/parser/reflect/reflect_test.go +++ b/parser/reflect/reflect_test.go @@ -18,7 +18,7 @@ import ( "reflect" "testing" - "github.com/katydid/validator-go/parser/debug" + "github.com/katydid/parser-go/parser/debug" ) func TestDebug(t *testing.T) { diff --git a/parser/xml/parser.go b/parser/xml/parser.go index 1330c21..5ba9a77 100644 --- a/parser/xml/parser.go +++ b/parser/xml/parser.go @@ -23,7 +23,7 @@ import ( "strconv" "strings" - "github.com/katydid/validator-go/parser" + "github.com/katydid/parser-go/parser" ) type xmlParser struct { diff --git a/parser/xml/parser_test.go b/parser/xml/parser_test.go index 6657bca..2a00749 100644 --- a/parser/xml/parser_test.go +++ b/parser/xml/parser_test.go @@ -18,7 +18,7 @@ import ( "encoding/json" "testing" - "github.com/katydid/validator-go/parser/debug" + "github.com/katydid/parser-go/parser/debug" ) func testXML(t *testing.T, s string) { diff --git a/parser/yaml/yaml.go b/parser/yaml/yaml.go index 9bf8254..8b140a3 100644 --- a/parser/yaml/yaml.go +++ b/parser/yaml/yaml.go @@ -22,7 +22,7 @@ import ( "strconv" "strings" - "github.com/katydid/validator-go/parser" + "github.com/katydid/parser-go/parser" ) // YamlParser is a parser for YAML diff --git a/parser/yaml/yaml_test.go b/parser/yaml/yaml_test.go index bdf92a2..2290eb5 100644 --- a/parser/yaml/yaml_test.go +++ b/parser/yaml/yaml_test.go @@ -17,7 +17,7 @@ package yaml import ( "testing" - "github.com/katydid/validator-go/parser/debug" + "github.com/katydid/parser-go/parser/debug" ) func testYaml(t *testing.T, s string, output debug.Nodes) {