12 lines
248 B
Go
12 lines
248 B
Go
package view
|
|
|
|
import (
|
|
"fmt"
|
|
"me.thuanle/bbot/internal/helper/binancex"
|
|
)
|
|
|
|
func RenderSymbolInfo(sym string) string {
|
|
token := binancex.Symbol2Token(sym)
|
|
return fmt.Sprintf("<a href=\"https://www.binance.com/futures/%s\">%s</a>", sym, token)
|
|
}
|