This commit is contained in:
Chris Lu
2013-02-10 09:44:44 -08:00
parent d4e5a22e53
commit 79d11ac951
8 changed files with 30 additions and 30 deletions

View File

@@ -10,12 +10,12 @@ import (
)
type Location struct {
Url string "url"
PublicUrl string "publicUrl"
Url string `json:"url"`
PublicUrl string `json:"publicUrl"`
}
type LookupResult struct {
Locations []Location "locations"
Error string "error"
Locations []Location `json:"locations"`
Error string `json:"error"`
}
//TODO: Add a caching for vid here