Skip to content

Commit

Permalink
Package rename
Browse files Browse the repository at this point in the history
  • Loading branch information
benc-uk committed Jan 4, 2023
1 parent 96b59ea commit fe28d34
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion client/email.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ import (
"path/filepath"
"time"

"github.com/benc-uk/go-acs-email/auth"
"github.com/benc-uk/go-acs-client/auth"

"github.com/google/uuid"
)

Expand Down
2 changes: 1 addition & 1 deletion client/sms.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"net/http"
"time"

"github.com/benc-uk/go-acs-email/auth"
"github.com/benc-uk/go-acs-client/auth"
"github.com/google/uuid"
)

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/benc-uk/go-acs-email
module github.com/benc-uk/go-acs-client

go 1.19

Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ It's simple to use, the only pre-req is a Communication Service resource [deploy
Let's send an email to Bob, he'd love to hear from us...

```go
import "github.com/benc-uk/go-acs-email/client"
import "github.com/benc-uk/go-acs-client/client"

endpoint := "https://blahblah.communication.azure.com"
accessKey := os.Getenv("ACS_ACCESS_KEY") // Keep the ACS access key secret
Expand All @@ -34,7 +34,7 @@ if err != nil {
Maybe Bob would like a coffee, let's send him a SMS

```go
import "github.com/benc-uk/go-acs-email/client"
import "github.com/benc-uk/go-acs-client/client"

endpoint := "https://blahblah.communication.azure.com"
accessKey := os.Getenv("ACS_ACCESS_KEY") // Keep the ACS access key secret
Expand Down

0 comments on commit fe28d34

Please sign in to comment.