Updated Queryrow struct

Signed-off-by: Pin <wf6DJd8a3xSSCZbn@protonmail.com>
This commit is contained in:
Pin
2021-01-31 20:12:36 -05:00
parent 72e9830119
commit 0a84e1842e

View File

@@ -19,11 +19,11 @@
package structs
type DogPicRow struct {
Dog_id int
Breed_id int
Author string
Title string
Format string
Hash string
Url string
Dog_id int `json:"id"`
Breed_id int `json:"bid"`
Author string `json:"author"`
Title string `json:"title"`
Format string `json:"format"`
Hash string `json:"hash"`
Url string `json:"url"`
}