Skip to content

Commit

Permalink
Update README to reflect folder restructuring
Browse files Browse the repository at this point in the history
  • Loading branch information
sreyantha-plivo committed Jan 11, 2018
1 parent 8afc842 commit a652cc6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.

Expand All @@ -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{})
Expand All @@ -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{})
Expand Down Expand Up @@ -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{})
Expand All @@ -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{})
Expand Down

0 comments on commit a652cc6

Please sign in to comment.