Интернет-магазин: Go, PostgreSQL 17 SSL, Caddy, Docker Compose

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
shop
2026-05-16 17:09:27 +03:00
commit 448cf2a465
21 changed files with 1208 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
package models
type Product struct {
ID int
Name string
Description string
Price float64
ImageURL string
Category string
Featured bool
}