1
0
Fork 0
mirror of https://github.com/imjasonh/appengine-value synced 2026-07-06 22:12:22 +00:00

update usage sample for GetMulti

This commit is contained in:
Jason Hall 2014-08-22 16:42:35 -04:00
parent 87e9551ae4
commit bd93c5f186

View file

@ -32,7 +32,7 @@ If you have multiple values, you can **batch lookups**:
```
func doOAuth(c appengine.Context) {
vals := value.GetMulti(c, "client_id", "client_secret")
// use vals["clientID"] and vals["clientSecret"]
clientID, clientSecret := vals["client_id"], vals["client_secret"]
}
```