Files
d3m0k1d.ru/backend/internal/storage/models.go
d3m0k1d 44406b02d3
Some checks failed
Backend ci / build (push) Failing after 36m27s
chore: add code for 2 handlers with GET
2026-02-03 19:41:18 +03:00

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"`
}