Created
October 5, 2015 04:19
-
-
Save IndianGuru/1bc7cbc3c4492fe1640e to your computer and use it in GitHub Desktop.
struct.go
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type Currencylayer struct { | |
| Success bool `json:"success"` | |
| Terms string `json:"terms"` | |
| Privacy string `json:"privacy"` | |
| Timestamp int `json:"timestamp"` | |
| Source string `json:"source"` | |
| Quotes struct { | |
| Usdeur float64 `json:"USDEUR"` | |
| Usdinr float64 `json:"USDINR"` | |
| } `json:"quotes"` | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment