From 6a3a51074b55f49da3126afe1ffc19b1a9cdbe5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Gonz=C3=A1lez=20Di=20Antonio?= Date: Wed, 24 Jun 2026 22:13:02 +0200 Subject: [PATCH] Update repository organization references --- README.md | 10 +++++----- example/main.go | 2 +- go.mod | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index fb44c5e..34874d5 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # mailer -[![Go Reference](https://pkg.go.dev/badge/github.com/p2p-b2b/mailer.svg)](https://pkg.go.dev/github.com/p2p-b2b/mailer) -![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/p2p-b2b/mailer?style=plastic) -[![Go Report Card](https://goreportcard.com/badge/github.com/p2p-b2b/mailer)](https://goreportcard.com/report/github.com/p2p-b2b/mailer) +[![Go Reference](https://pkg.go.dev/badge/github.com/slashdevops/mailer.svg)](https://pkg.go.dev/github.com/slashdevops/mailer) +![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/slashdevops/mailer?style=plastic) +[![Go Report Card](https://goreportcard.com/badge/github.com/slashdevops/mailer)](https://goreportcard.com/report/github.com/slashdevops/mailer) 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). @@ -25,7 +25,7 @@ This package provides a robust and concurrent email sending service for Go appli To use this library in your project, install it using `go get`: ```sh -go get github.com/p2p-b2b/mailer@latest +go get github.com/slashdevops/mailer@latest ```` ## Components @@ -77,7 +77,7 @@ import ( "syscall" "time" - "github.com/p2p-b2b/mailer" // Assuming this is the module path + "github.com/slashdevops/mailer" // Assuming this is the module path ) func main() { diff --git a/example/main.go b/example/main.go index c681f55..a09cdae 100644 --- a/example/main.go +++ b/example/main.go @@ -10,7 +10,7 @@ import ( "syscall" "time" - "github.com/p2p-b2b/mailer" // Import the library + "github.com/slashdevops/mailer" // Import the library ) func main() { diff --git a/go.mod b/go.mod index c0a41ca..a5241d0 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/p2p-b2b/mailer +module github.com/slashdevops/mailer go 1.24.3