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

gofmt README

This commit is contained in:
Jason Hall 2014-05-18 16:55:41 -04:00
parent c0777de2d2
commit 3859745cd6

View file

@ -9,8 +9,8 @@ Your app requires secret values (OAuth secrets, API keys, passwords) and you rig
```
const (
clientID := "123456.clientaccount.foo"
clientSecret := "s8p3rs3cr1t"
clientID = "123456.clientaccount.foo"
clientSecret = "s8p3rs3cr1t"
)
```
@ -39,7 +39,7 @@ func doOAuth(c appengine.Context) {
**Or define values like flags**
```
var (
clientID = value.String("client_id")
clientID = value.String("client_id")
clientSecret = value.String("client_secret")
)