From 846373aafe963ae0b083887f18fb4ee8729f9153 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Gonz=C3=A1lez=20Di=20Antonio?= Date: Wed, 24 Jun 2026 21:41:20 +0200 Subject: [PATCH] chore: update module path to github.com/slashdevops/qfv Repository transferred to the slashdevops organization. Update the module path and all import/reference paths accordingly. Co-Authored-By: Claude Opus 4.8 (1M context) --- .testcoverage.yml | 2 +- README.md | 4 ++-- example/example_test.go | 2 +- go.mod | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) 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