Browse Source

Add GetCollection example

pull/6/head
Matt Baer 6 years ago
parent
commit
90e9560c81
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      collection_test.go

+ 11
- 0
collection_test.go View File

@@ -1,6 +1,7 @@
package writeas

import (
"fmt"
"testing"
)

@@ -17,3 +18,13 @@ func TestGetCollection(t *testing.T) {
}
}
}

func ExampleGetCollection() {
c := NewClient()
coll, err := c.GetCollection("blog")
if err != nil {
fmt.Printf("%v", err)
return
}
fmt.Printf("%+v", coll)
}

Loading…
Cancel
Save