7 lines
99 B
Go
7 lines
99 B
Go
package article
|
|
|
|
type Document struct {
|
|
Title string `json:"title"`
|
|
Body string `json:"body"`
|
|
}
|