mirror of
https://github.com/imjasonh/appengine-value
synced 2026-07-06 22:12:22 +00:00
gofmt README
This commit is contained in:
parent
c0777de2d2
commit
3859745cd6
1 changed files with 3 additions and 3 deletions
|
|
@ -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")
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue