8 lines
77 B
Go
8 lines
77 B
Go
package domain
|
|
|
|
type Post struct {
|
|
ID uint
|
|
Title string
|
|
Text string
|
|
}
|