add new Nature method to Record interface

This commit is contained in:
2025-11-20 19:26:08 +00:00
parent 1106705eb2
commit b4b12ad625
4 changed files with 104 additions and 0 deletions

View File

@@ -27,6 +27,10 @@ func (r Record) Symbol() string {
return r.symbol
}
func (r Record) Nature() string {
return "" // TODO: implement this
}
func (r Record) BrokerCountry() int64 {
return int64(Country)
}