pascal case

This commit is contained in:
Ramiro Paz
2026-05-06 14:11:50 -03:00
parent 68238d309a
commit 36b841fc66
3 changed files with 13 additions and 15 deletions

View File

@ -1,6 +1,5 @@
package rest
type HTTPError struct {
Error string
}
@ -19,7 +18,6 @@ type Session struct {
}
type SendQuoteRequest struct {
QuoteReqID string `json:"quote_req_id" binding:"required"`
Price string `json:"price" binding:"required" example:"99.6"`
QuoteReqID string `json:"QuoteReqID" binding:"required"`
Price string `json:"Price" binding:"required" example:"99.6"`
}