diff --git a/client/email.go b/client/email.go index 0074547..d80746f 100644 --- a/client/email.go +++ b/client/email.go @@ -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" ) diff --git a/client/sms.go b/client/sms.go index 2e526aa..5341317 100644 --- a/client/sms.go +++ b/client/sms.go @@ -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" ) diff --git a/go.mod b/go.mod index 8c0e0c0..30b211c 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/benc-uk/go-acs-email +module github.com/benc-uk/go-acs-client go 1.19 diff --git a/readme.md b/readme.md index 2e4ea0a..923cb8d 100644 --- a/readme.md +++ b/readme.md @@ -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 @@ -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