Files
crypto-price-bot/internal/services/tele/view/symbol.go
thuanle 94a11e8d68
All checks were successful
Build Docker Image / build (amd64) (push) Successful in 1m47s
add margin
2024-10-24 10:58:32 +07:00

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)
}