- add json struct tags

This commit is contained in:
rocketlaunchr-cto 2020-03-11 15:45:20 +11:00
parent 007d055ab5
commit 76d4f03cef

View File

@ -14,16 +14,16 @@ import (
type GoogleResult struct { type GoogleResult struct {
// Rank is the order number of the search result. // Rank is the order number of the search result.
Rank int Rank int `json:"rank"`
// URL of result. // URL of result.
URL string URL string `json:"url"`
// Title of result. // Title of result.
Title string Title string `json:"title"`
// Description of the result. // Description of the result.
Description string Description string `json:"description"`
} }
// GoogleDomains represents localized Google homepages. The 2 letter country code is based on ISO 3166-1 alpha-2. // GoogleDomains represents localized Google homepages. The 2 letter country code is based on ISO 3166-1 alpha-2.