Skip to content

Instantly share code, notes, and snippets.

@dumindu
Created August 17, 2019 14:07
Show Gist options
  • Save dumindu/76b78df945bc89672e21001543ceb941 to your computer and use it in GitHub Desktop.
Save dumindu/76b78df945bc89672e21001543ceb941 to your computer and use it in GitHub Desktop.
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