-
Notifications
You must be signed in to change notification settings - Fork 2
/
doc.go
42 lines (42 loc) · 1 KB
/
doc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Package parse provides a programmatic interface to the Parse.com API
//
// This package uses reflection to get the name of the types provided and uses
// encoding/json to serialize values.
//
// Please reference encoding/json documentation for serialization details.
//
// Example:
//
// package main
//
// import (
// "fmt"
// "os"
//
// "github.com/tmc/parse"
// )
//
// type GameScore struct {
// parse.ParseObject
// CheatMode bool `json:"cheatMode,omitempty"`
// PlayerName string `json:"playerName,omitempty"`
// Score float64 `json:"score,omitempty"`
// }
//
// func main() {
// appID := os.Getenv("APPLICATION_ID")
// apiKey := os.Getenv("REST_API_KEY")
// client, _ := parse.NewClient(appID, apiKey)
//
// objID, err := client.Create(&GameScore{
// CheatMode: true,
// PlayerName: "Sean Plott",
// Score: 1337,
// })
// if err != nil {
// fmt.Println("error:", err)
// os.Exit(1)
// }
// fmt.Println("Created", objID)
// }
package parse