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

5
products/app/api/dto.go Normal file
View File

@ -0,0 +1,5 @@
package api
type PingDto struct {
Message string `json:"message"`
}