add create product endpoint

This commit is contained in:
katefort 2025-04-21 19:13:58 -05:00
parent 43c183c29a
commit 561b8841fc
7 changed files with 104 additions and 23 deletions

View file

@ -59,3 +59,11 @@ type ProductClaims struct {
Id int
Claims []Claim
}
type UserClaimForm struct {
Evidence_type EvidenceType
Evidence struct{}
Claims []ClaimType
Counterclaims []ClaimType
Created_by string
}