From cc6281a083d392decdf10999def72a4dd6085929 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Gonz=C3=A1lez=20Di=20Antonio?= Date: Wed, 24 Jun 2026 22:05:54 +0200 Subject: [PATCH] Update module path for slashdevops transfer --- README.md | 8 ++++---- example_test.go | 2 +- examples/go.mod | 4 ++-- examples/main.go | 5 +++-- go.mod | 2 +- 5 files changed, 11 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ac4d6e1..7f65836 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # textn8r -[![Go Report Card](https://goreportcard.com/badge/github.com/p2p-b2b/textn8r)](https://goreportcard.com/report/github.com/p2p-b2b/textn8r) -[![GoDoc](https://godoc.org/github.com/p2p-b2b/textn8r?status.svg)](https://godoc.org/github.com/p2p-b2b/textn8r) +[![Go Report Card](https://goreportcard.com/badge/github.com/slashdevops/textn8r)](https://goreportcard.com/report/github.com/slashdevops/textn8r) +[![GoDoc](https://godoc.org/github.com/slashdevops/textn8r?status.svg)](https://godoc.org/github.com/slashdevops/textn8r) A flexible and extensible Go library for text normalization. `textn8r` provides a comprehensive set of string normalizers that can be used individually or chained together to clean, transform, and standardize text data. @@ -19,7 +19,7 @@ A flexible and extensible Go library for text normalization. `textn8r` provides ## Installation ```bash -go get github.com/p2p-b2b/textn8r +go get github.com/slashdevops/textn8r ``` ## Quick Start @@ -29,7 +29,7 @@ package main import ( "fmt" - "github.com/p2p-b2b/textn8r" + "github.com/slashdevops/textn8r" ) func main() { diff --git a/example_test.go b/example_test.go index fbafeda..82aa042 100644 --- a/example_test.go +++ b/example_test.go @@ -4,7 +4,7 @@ import ( "fmt" "strings" - "github.com/p2p-b2b/textn8r" + "github.com/slashdevops/textn8r" ) // Example demonstrates basic usage of individual normalizers diff --git a/examples/go.mod b/examples/go.mod index e989f51..ce77c05 100644 --- a/examples/go.mod +++ b/examples/go.mod @@ -2,6 +2,6 @@ module examples go 1.24.5 -require github.com/p2p-b2b/textn8r v0.0.0 +require github.com/slashdevops/textn8r v0.0.0 -replace github.com/p2p-b2b/textn8r => ../ +replace github.com/slashdevops/textn8r => ../ diff --git a/examples/main.go b/examples/main.go index 51bacea..6fb401e 100644 --- a/examples/main.go +++ b/examples/main.go @@ -4,11 +4,12 @@ import ( "fmt" "strings" - "github.com/p2p-b2b/textn8r" + "github.com/slashdevops/textn8r" ) func main() { - fmt.Println("=== textn8r Examples ===\n") + fmt.Println("=== textn8r Examples ===") + fmt.Println() // Basic normalizers fmt.Println("1. Basic Case Normalizers:") diff --git a/go.mod b/go.mod index d01f1db..2f7ff33 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/p2p-b2b/textn8r +module github.com/slashdevops/textn8r go 1.24.5