diff options
| author | Shulhan <ms@kilabit.info> | 2026-04-05 03:50:32 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2026-04-05 03:52:47 +0700 |
| commit | 778fd16011ec1d39c41b62372dc65f045183266e (patch) | |
| tree | a6f6f26930c00d8ac3dd7bfa1fb476bd65454833 /lib/contact/google/address.go | |
| parent | 6fba7b9ce3bcaf4225e5ab774a15ef7364ed1420 (diff) | |
| download | pakakeh.go-778fd16011ec1d39c41b62372dc65f045183266e.tar.xz | |
all: apply go fix
Diffstat (limited to 'lib/contact/google/address.go')
| -rw-r--r-- | lib/contact/google/address.go | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/contact/google/address.go b/lib/contact/google/address.go index 563ae101..457a4aed 100644 --- a/lib/contact/google/address.go +++ b/lib/contact/google/address.go @@ -6,11 +6,11 @@ package google // Address format. type Address struct { Rel string `json:"rel,omitempty"` - Full GD `json:"gd$formattedAddress,omitempty"` - POBox GD `json:"gd$pobox,omitempty"` - Street GD `json:"gd$street,omitempty"` - City GD `json:"gd$city,omitempty"` - StateOrProv GD `json:"gd$region,omitempty"` - PostalCode GD `json:"gd$postcode,omitempty"` - Country GD `json:"gd$country,omitempty"` + Full GD `json:"gd$formattedAddress"` + POBox GD `json:"gd$pobox"` + Street GD `json:"gd$street"` + City GD `json:"gd$city"` + StateOrProv GD `json:"gd$region"` + PostalCode GD `json:"gd$postcode"` + Country GD `json:"gd$country"` } |
