Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .testcoverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -29,7 +29,7 @@ import (
"fmt"
"log"

qfv "github.com/p2p-b2b/qfv"
qfv "github.com/slashdevops/qfv"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion example/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"strings"
"testing"

qfv "github.com/p2p-b2b/qfv"
qfv "github.com/slashdevops/qfv"
)

func TestParsers(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/p2p-b2b/qfv
module github.com/slashdevops/qfv

go 1.24.2
Loading