Skip to content

Commit 84809a3

Browse files
authored
Update repository organization references (#7)
1 parent 6878cc8 commit 84809a3

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# mailer
22

3-
[![Go Reference](https://pkg.go.dev/badge/github.com/p2p-b2b/mailer.svg)](https://pkg.go.dev/github.com/p2p-b2b/mailer)
4-
![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/p2p-b2b/mailer?style=plastic)
5-
[![Go Report Card](https://goreportcard.com/badge/github.com/p2p-b2b/mailer)](https://goreportcard.com/report/github.com/p2p-b2b/mailer)
3+
[![Go Reference](https://pkg.go.dev/badge/github.com/slashdevops/mailer.svg)](https://pkg.go.dev/github.com/slashdevops/mailer)
4+
![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/slashdevops/mailer?style=plastic)
5+
[![Go Report Card](https://goreportcard.com/badge/github.com/slashdevops/mailer)](https://goreportcard.com/report/github.com/slashdevops/mailer)
66

77
This package provides a robust and concurrent email sending service for Go applications. It allows queueing emails and sending them asynchronously using a pool of workers via a configurable backend (e.g., SMTP).
88

@@ -25,7 +25,7 @@ This package provides a robust and concurrent email sending service for Go appli
2525
To use this library in your project, install it using `go get`:
2626

2727
```sh
28-
go get github.com/p2p-b2b/mailer@latest
28+
go get github.com/slashdevops/mailer@latest
2929
````
3030

3131
## Components
@@ -77,7 +77,7 @@ import (
7777
"syscall"
7878
"time"
7979
80-
"github.com/p2p-b2b/mailer" // Assuming this is the module path
80+
"github.com/slashdevops/mailer" // Assuming this is the module path
8181
)
8282
8383
func main() {

example/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"syscall"
1111
"time"
1212

13-
"github.com/p2p-b2b/mailer" // Import the library
13+
"github.com/slashdevops/mailer" // Import the library
1414
)
1515

1616
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/p2p-b2b/mailer
1+
module github.com/slashdevops/mailer
22

33
go 1.24.3

0 commit comments

Comments
 (0)