Initial commit

This commit is contained in:
Djuri 2025-05-18 23:54:04 +02:00
commit c5111cb551
Signed by: djuri
GPG key ID: 61B9B2DDE5AA3AC1
20 changed files with 1764 additions and 0 deletions

8
models/ticker.go Normal file
View file

@ -0,0 +1,8 @@
package models
type Ticker struct {
Symbol string `json:"symbol"`
Last float64 `json:"last"`
Bid float64 `json:"bid"`
Ask float64 `json:"ask"`
}