From 7eca347e1ff42666e4652f878d30cbb550600cc3 Mon Sep 17 00:00:00 2001 From: David Friedel Date: Sat, 27 Dec 2025 10:40:21 +0000 Subject: [PATCH] Update README with branded header and documentation links MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add centered logo and title with product branding - Add links to product website and documentation - Add badges for package manager and license - Add Other SDKs table with cross-references - Add Support section with dev@ironservices.io email - Update repository links to git.marketally.com 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- README.md | 59 ++++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 50 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index e621986..10de632 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,35 @@ -# IronNotify SDK for Go +

+ + IronNotify + +

-Event notifications and alerts SDK for Go applications. Send notifications, receive real-time updates, and manage notification state. +

IronNotify SDK for Go

-[![Go Reference](https://pkg.go.dev/badge/github.com/IronServices/ironnotify-go.svg)](https://pkg.go.dev/github.com/IronServices/ironnotify-go) -[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) +

+ Event notifications and alerts for Go applications +

+ +

+ Go Reference + License: MIT +

+ +

+ Website • + Documentation • + Go Guide • + Git +

+ +--- + +**IronNotify** helps you send event notifications and alerts to your users instantly. Built for developers who want simple, powerful notification infrastructure without the complexity. ## Installation ```bash -go get github.com/IronServices/ironnotify-go +go get git.marketally.com/ironservices/ironnotify-go ``` ## Quick Start @@ -20,7 +41,7 @@ package main import ( "fmt" - ironnotify "github.com/IronServices/ironnotify-go" + ironnotify "git.marketally.com/ironservices/ironnotify-go" ) func main() { @@ -56,7 +77,7 @@ package main import ( "time" - ironnotify "github.com/IronServices/ironnotify-go" + ironnotify "git.marketally.com/ironservices/ironnotify-go" ) func main() { @@ -89,7 +110,7 @@ func main() { package main import ( - ironnotify "github.com/IronServices/ironnotify-go" + ironnotify "git.marketally.com/ironservices/ironnotify-go" ) func main() { @@ -118,7 +139,7 @@ func main() { ## Configuration ```go -import ironnotify "github.com/IronServices/ironnotify-go" +import ironnotify "git.marketally.com/ironservices/ironnotify-go" client, _ := ironnotify.NewClient(ironnotify.Options{ APIKey: "ak_live_xxxxx", @@ -281,6 +302,26 @@ client.FlushContext(ctx) The client is thread-safe and can be used from multiple goroutines concurrently. +## Documentation + +For complete documentation, visit [ironnotify.com/docs](https://ironnotify.com/docs). + +## Other SDKs + +| Platform | Package | +|----------|---------| +| JavaScript/TypeScript | [@ironservices/notify](https://git.marketally.com/ironservices/ironnotify-js) | +| .NET | [IronNotify.Client](https://git.marketally.com/ironservices/ironnotify-dotnet) | +| Python | [ironnotify](https://git.marketally.com/ironservices/ironnotify-python) | +| Java | [ironnotify-java](https://git.marketally.com/ironservices/ironnotify-java) | +| Rust | [ironnotify](https://git.marketally.com/ironservices/ironnotify-rust) | + +## Support + +- **Documentation**: [ironnotify.com/docs](https://ironnotify.com/docs) +- **Email**: dev@ironservices.io +- **Issues**: [git.marketally.com/ironservices/ironnotify-go/issues](https://git.marketally.com/ironservices/ironnotify-go/issues) + ## License MIT License - see [LICENSE](LICENSE) for details.