chore: add storage logger and handler in /int

This commit is contained in:
d3m0k1d
2026-02-03 18:03:53 +03:00
parent c2bceaf479
commit a56fe30f83
9 changed files with 128 additions and 6 deletions

View File

@@ -0,0 +1,8 @@
package storage
type Post struct {
ID int `db:"id"`
Title string `db:"title"`
Content string `db:"content"`
CreatedAt string `db:"created_at"`
}