Products app

This commit is contained in:
Eden Kirin
2024-01-14 11:47:50 +01:00
parent ff375ae3e8
commit 304ce0678a
17 changed files with 492 additions and 1 deletions

View File

@ -0,0 +1,7 @@
package api
import "products/app/db"
type GetProductsResponse struct {
Products []db.Product `json:"products"`
}