Files
crypto-price-bot/internal/services/tele/chat/helper/wrap.go
2024-10-24 09:53:23 +07:00

10 lines
150 B
Go

package helper
func Pre(msg string) string {
return "<pre>" + msg + "</pre>"
}
func Code(msg string) string {
return "<code>" + msg + "</code>"
}