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

12 lines
227 B
Go

package commands
import "gopkg.in/telebot.v3"
const what = `Welcome on board! Here is some tips:
- /p to get pricing
- /l to list current positions`
func OnStart(context telebot.Context) error {
return context.Send(what)
}