From f2f0ad2aaa400d8b18c6194ce7cd77f5f71156f1 Mon Sep 17 00:00:00 2001 From: hstrobel Date: Fri, 3 Feb 2023 01:04:47 +0100 Subject: [PATCH] Use all lowercase go module name --- README.md | 4 ++-- go.mod | 2 +- main.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a5afb04..20c6d34 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ![GitHub release (latest by date)](https://img.shields.io/github/v/release/goneup/go-pingen-sdk?style=plastic) -A personal hobby project that implements the API of postal provider [pingen.com](https://www.pingen.com). +A personal hobby project that implements the API of postal provider [pingen.com](https://www.pingen.com) in Go. **Not affiliated in any way with pingen.com** @@ -12,7 +12,7 @@ A personal hobby project that implements the API of postal provider [pingen.com] Import it with ``` - go get github.com/GoneUp/go-pingen-sdk + go get github.com/goneup/go-pingen-sdk ``` Simple usage with (or see [main.go](main.go)) diff --git a/go.mod b/go.mod index 0daa5d1..d0faccd 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/GoneUp/go-pingen-sdk +module github.com/goneup/go-pingen-sdk go 1.18 diff --git a/main.go b/main.go index b699b95..f76d484 100644 --- a/main.go +++ b/main.go @@ -5,7 +5,7 @@ import ( "os" "time" - "github.com/GoneUp/go-pingen-sdk/pingen" + "github.com/goneup/go-pingen-sdk/pingen" "github.com/joho/godotenv" log "github.com/sirupsen/logrus" )