From 581a48c96a473c3fd6a3301ed7264e4abfb409b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Gonz=C3=A1lez=20Di=20Antonio?= Date: Wed, 24 Jun 2026 21:45:46 +0200 Subject: [PATCH] Update module path for slashdevops transfer --- README.md | 8 ++++---- examples/key/main.go | 2 +- examples/middleware/main.go | 2 +- go.mod | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 3344ba3..2fe5736 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # ratelimiter -[![Go Reference](https://pkg.go.dev/badge/github.com/p2p-b2b/ratelimiter.svg)](https://pkg.go.dev/github.com/p2p-b2b/ratelimiter) +[![Go Reference](https://pkg.go.dev/badge/github.com/slashdevops/ratelimiter.svg)](https://pkg.go.dev/github.com/slashdevops/ratelimiter) ## Introduction @@ -25,7 +25,7 @@ For advanced use cases, you can provide your own storage backend by implementing ## Installation ```bash -go get github.com/p2p-b2b/ratelimiter +go get github.com/slashdevops/ratelimiter ``` ## Core Concepts @@ -44,7 +44,7 @@ import ( "fmt" "time" - "github.com/p2p-b2b/ratelimiter" + "github.com/slashdevops/ratelimiter" "golang.org/x/time/rate" ) @@ -103,7 +103,7 @@ import ( "strings" "time" - "github.com/p2p-b2b/ratelimiter" + "github.com/slashdevops/ratelimiter" "golang.org/x/time/rate" ) diff --git a/examples/key/main.go b/examples/key/main.go index 332c3d9..334b5bc 100644 --- a/examples/key/main.go +++ b/examples/key/main.go @@ -5,7 +5,7 @@ import ( "fmt" "time" - "github.com/p2p-b2b/ratelimiter" + "github.com/slashdevops/ratelimiter" "golang.org/x/time/rate" ) diff --git a/examples/middleware/main.go b/examples/middleware/main.go index 86000d9..0eec2a8 100644 --- a/examples/middleware/main.go +++ b/examples/middleware/main.go @@ -7,7 +7,7 @@ import ( "strings" "time" - "github.com/p2p-b2b/ratelimiter" + "github.com/slashdevops/ratelimiter" "golang.org/x/time/rate" ) diff --git a/go.mod b/go.mod index 434490e..aaac35b 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/p2p-b2b/ratelimiter +module github.com/slashdevops/ratelimiter go 1.24.2