"sourcecode.social/reiver/go-pathmatch" -> "github.com/reiver/go-pathmatch"

master
Charles Iliya Krempeaux 2024-08-01 17:45:30 -07:00
parent 3d387fb090
commit 0dc31d85af
6 changed files with 9 additions and 9 deletions

View File

@ -7,15 +7,15 @@ For example, a path could be a file system path, or a path could be a path from
## Documention ## Documention
Online documentation, which includes examples, can be found at: http://godoc.org/sourcecode.social/reiver/go-pathmatch Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-pathmatch
[![GoDoc](https://godoc.org/sourcecode.social/reiver/go-pathmatch?status.svg)](https://godoc.org/sourcecode.social/reiver/go-pathmatch) [![GoDoc](https://godoc.org/github.com/reiver/go-pathmatch?status.svg)](https://godoc.org/github.com/reiver/go-pathmatch)
## Example Usage ## Example Usage
```go ```go
import ( import (
"sourcecode.social/reiver/go-pathmatch" "github.com/reiver/go-pathmatch"
) )
// ... // ...
@ -51,7 +51,7 @@ fmt.Printf("vehicle_id = %q \n", vehicleId) // vehicle_id = "o_bcU.RZGK"
Alternatively: Alternatively:
```go ```go
import ( import (
"sourcecode.social/reiver/go-pathmatch" "github.com/reiver/go-pathmatch"
) )
// ... // ...

View File

@ -1,7 +1,7 @@
package pathmatch_test package pathmatch_test
import ( import (
"sourcecode.social/reiver/go-pathmatch" "github.com/reiver/go-pathmatch"
"fmt" "fmt"
) )

View File

@ -1,7 +1,7 @@
package pathmatch_test package pathmatch_test
import ( import (
"sourcecode.social/reiver/go-pathmatch" "github.com/reiver/go-pathmatch"
"fmt" "fmt"
"os" "os"

2
go.mod
View File

@ -1,4 +1,4 @@
module sourcecode.social/reiver/go-pathmatch module github.com/reiver/go-pathmatch
go 1.20 go 1.20

View File

@ -2,7 +2,7 @@ package pathmatch_test
import ( import (
"sourcecode.social/reiver/go-pathmatch" "github.com/reiver/go-pathmatch"
"testing" "testing"
) )

View File

@ -1,7 +1,7 @@
package pathmatch_test package pathmatch_test
import ( import (
"sourcecode.social/reiver/go-pathmatch" "github.com/reiver/go-pathmatch"
"testing" "testing"
) )