Skip to content

Instantly share code, notes, and snippets.

@ykyuen
Created April 8, 2019 17:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ykyuen/79c48e0fda1ac0e93a1ce790264a9864 to your computer and use it in GitHub Desktop.
Save ykyuen/79c48e0fda1ac0e93a1ce790264a9864 to your computer and use it in GitHub Desktop.
handling-http-request-in-go-echo-framework-1-01
package model
type ExampleRequest struct {
FirstName string `json:"first_name" form:"first_name" query:"first_name"`
LastName string `json:"last_name" form:"last_name" query:"last_name"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment