crypto_alert_bot/internal/entities/instrument.go
2026-04-28 11:42:52 +03:00

10 lines
298 B
Go

package entities
type InstrumentID string
type Instrument struct {
ID InstrumentID
BaseCurrency string // base currency of the pair. e.g. BTC.
QuoteCurrency string // quote currency of the pair. e.g. USDT.
IsGlobal bool // true for pre-seeded pairs visible to all users.
}