crypto_alert_bot/internal/entities/alert.go

12 lines
191 B
Go

package entities
import "github.com/shopspring/decimal"
type AlertID string
type Alert struct {
ID AlertID
UserID UserID
Price decimal.Decimal
Instrument Instrument
}