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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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
Expand All @@ -44,7 +44,7 @@ import (
"fmt"
"time"

"github.com/p2p-b2b/ratelimiter"
"github.com/slashdevops/ratelimiter"
"golang.org/x/time/rate"
)

Expand Down Expand Up @@ -103,7 +103,7 @@ import (
"strings"
"time"

"github.com/p2p-b2b/ratelimiter"
"github.com/slashdevops/ratelimiter"
"golang.org/x/time/rate"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/key/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"time"

"github.com/p2p-b2b/ratelimiter"
"github.com/slashdevops/ratelimiter"
"golang.org/x/time/rate"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/middleware/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"time"

"github.com/p2p-b2b/ratelimiter"
"github.com/slashdevops/ratelimiter"
"golang.org/x/time/rate"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/p2p-b2b/ratelimiter
module github.com/slashdevops/ratelimiter

go 1.24.2

Expand Down
Loading