7 lines
136 B
Go
7 lines
136 B
Go
package req
|
|
|
|
type PostRequest struct {
|
|
Title string `json:"title" binding:"required"`
|
|
Text string `json:"text" binding:"required"`
|
|
}
|