diff options
Diffstat (limited to 'flat.go')
-rw-r--r-- | flat.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,8 +6,8 @@ import ( ) type flat struct { - ID int - Price string + ID int `json:"id"` + Price string `json:"price"` } func (f *flat) URL() string { |