12 lines
227 B
Go
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)
|
|
}
|