common structs

This commit is contained in:
nquidox 2026-04-03 19:06:18 +03:00
parent 991b250118
commit 3e74f1cf5e

12
internal/common/struct.go Normal file
View file

@ -0,0 +1,12 @@
package common
type Task struct {
MerchUuid string `json:"merch_uuid"`
Link string `json:"link"`
}
type Result struct {
MerchUuid string `json:"merch_uuid"`
OriginName string `json:"origin_name"`
Price int32 `json:"price"`
}