diff --git a/.testcoverage.yml b/.testcoverage.yml index 530cb8d..0239d5d 100644 --- a/.testcoverage.yml +++ b/.testcoverage.yml @@ -9,7 +9,7 @@ profile: coverage.txt # (optional; but recommended to set) # When specified reported file paths will not contain local prefix in the output. -local-prefix: "github.com/p2p-b2b/qfv" +local-prefix: "github.com/slashdevops/qfv" # Holds coverage thresholds percentages, values should be in range [0-100]. threshold: diff --git a/README.md b/README.md index 66d4903..f04c22b 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ The library ensures that only allowed fields are used in these expressions, help ## Installation ```bash -go get github.com/p2p-b2b/qfv@latest +go get github.com/slashdevops/qfv@latest ``` ## Usage @@ -29,7 +29,7 @@ import ( "fmt" "log" - qfv "github.com/p2p-b2b/qfv" + qfv "github.com/slashdevops/qfv" ) func main() { diff --git a/example/example_test.go b/example/example_test.go index 8275aea..a146ddc 100644 --- a/example/example_test.go +++ b/example/example_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - qfv "github.com/p2p-b2b/qfv" + qfv "github.com/slashdevops/qfv" ) func TestParsers(t *testing.T) { diff --git a/go.mod b/go.mod index 3226103..8e61bc0 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/p2p-b2b/qfv +module github.com/slashdevops/qfv go 1.24.2