From a652cc634c30d57b61453e7ba497fd181acf27d9 Mon Sep 17 00:00:00 2001 From: Sreyanth Date: Thu, 11 Jan 2018 15:02:17 +0530 Subject: [PATCH] Update README to reflect folder restructuring --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3555e04..5ca5706 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The Plivo Go SDK makes it simpler to integrate communications into your Go appli You can use the SDK using the `go` command. - $ go get github.com/plivo/plivo-go/plivo + $ go get github.com/plivo/plivo-go You can also install by cloning this repository into your `GOPATH`. @@ -22,7 +22,7 @@ We recommend that you store your credentials in the `PLIVO_AUTH_ID` and the `PLI ```go package main -import "github.com/plivo/plivo-go/plivo" +import "github.com/plivo/plivo-go" func main() { client, err := plivo.NewClient("", "", &plivo.ClientOptions{}) @@ -36,7 +36,7 @@ Alternatively, you can specifiy the authentication credentials while initializin ```go package main -import "github.com/plivo/plivo-go/plivo" +import "github.com/plivo/plivo-go" func main() { client, err := plivo.NewClient("your_auth_id", "your_auth_token", &plivo.ClientOptions{}) @@ -66,7 +66,7 @@ Using `client.Resources.List()` would list the first 20 resources by default (wh ```go package main -import "github.com/plivo/plivo-go/plivo" +import "github.com/plivo/plivo-go" func main() { client, err := plivo.NewClient("", "", &plivo.ClientOptions{}) @@ -86,7 +86,7 @@ func main() { ```go package main -import "github.com/plivo/plivo-go/plivo" +import "github.com/plivo/plivo-go" func main() { client, err := plivo.NewClient("", "", &plivo.ClientOptions{})