12 lines
193 B
Go
12 lines
193 B
Go
package view
|
|
|
|
import (
|
|
"fmt"
|
|
"me.thuanle/bbot/internal/helper/binancex"
|
|
)
|
|
|
|
func RenderSymbolInfo(sym string) string {
|
|
token := binancex.Symbol2Token(sym)
|
|
return fmt.Sprintf("#%s", token)
|
|
}
|