14 lines
255 B
Go
14 lines
255 B
Go
package storage
|
|
|
|
type Post struct {
|
|
ID int `db:"id"`
|
|
Title string `db:"title"`
|
|
Content string `db:"content"`
|
|
CreatedAt string `db:"created_at"`
|
|
}
|
|
|
|
type PostReq struct {
|
|
Title string `json:"title"`
|
|
Content string `json:"content"`
|
|
}
|