ws-go-server/models/ticker.go
2025-05-18 23:54:04 +02:00

8 lines
159 B
Go

package models
type Ticker struct {
Symbol string `json:"symbol"`
Last float64 `json:"last"`
Bid float64 `json:"bid"`
Ask float64 `json:"ask"`
}