Created
August 17, 2019 14:07
-
-
Save dumindu/76b78df945bc89672e21001543ceb941 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type BookForm struct { | |
Title string `json:"title" form:"required,max=255"` | |
Author string `json:"author" form:"required,max=255"` | |
PublishedDate string `json:"published_date" form:"required"` | |
ImageUrl string `json:"image_url" form:"url"` | |
Description string `json:"description"` | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment