From 0dc31d85afa8c7ef88d7913a690c093943cb82e9 Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Thu, 1 Aug 2024 17:45:30 -0700 Subject: [PATCH] "sourcecode.social/reiver/go-pathmatch" -> "github.com/reiver/go-pathmatch" --- README.md | 8 ++++---- example_compile_test.go | 2 +- example_pattern_string_test.go | 2 +- go.mod | 2 +- pattern_find_test.go | 2 +- pattern_match_test.go | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index e5aba38..d5d64a0 100644 --- a/README.md +++ b/README.md @@ -7,15 +7,15 @@ For example, a path could be a file system path, or a path could be a path from ## 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 ```go 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: ```go import ( - "sourcecode.social/reiver/go-pathmatch" + "github.com/reiver/go-pathmatch" ) // ... diff --git a/example_compile_test.go b/example_compile_test.go index b95a888..aa4859e 100644 --- a/example_compile_test.go +++ b/example_compile_test.go @@ -1,7 +1,7 @@ package pathmatch_test import ( - "sourcecode.social/reiver/go-pathmatch" + "github.com/reiver/go-pathmatch" "fmt" ) diff --git a/example_pattern_string_test.go b/example_pattern_string_test.go index 1fe8a01..da3f886 100644 --- a/example_pattern_string_test.go +++ b/example_pattern_string_test.go @@ -1,7 +1,7 @@ package pathmatch_test import ( - "sourcecode.social/reiver/go-pathmatch" + "github.com/reiver/go-pathmatch" "fmt" "os" diff --git a/go.mod b/go.mod index 59f98c0..b2e62af 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module sourcecode.social/reiver/go-pathmatch +module github.com/reiver/go-pathmatch go 1.20 diff --git a/pattern_find_test.go b/pattern_find_test.go index feae75f..8d845c0 100644 --- a/pattern_find_test.go +++ b/pattern_find_test.go @@ -2,7 +2,7 @@ package pathmatch_test import ( - "sourcecode.social/reiver/go-pathmatch" + "github.com/reiver/go-pathmatch" "testing" ) diff --git a/pattern_match_test.go b/pattern_match_test.go index b23c585..0063f3d 100644 --- a/pattern_match_test.go +++ b/pattern_match_test.go @@ -1,7 +1,7 @@ package pathmatch_test import ( - "sourcecode.social/reiver/go-pathmatch" + "github.com/reiver/go-pathmatch" "testing" )