ALFRED/commands/hello.go

20 lines
373 B
Go

/*
* @Author: Bartuccio Antoine
* @Date: 2018-07-24 12:05:45
* @Last Modified by: Bartuccio Antoine
* @Last Modified time: 2019-01-04 10:39:24
*/
package commands
import (
"git.klmp200.net/ALFRED/ALFRED/shared"
tb "gopkg.in/tucnak/telebot.v2"
)
// Hello makes ALFRED say hello
func Hello(m *tb.Message) {
shared.Bot.Send(m.Chat, "Bonjour "+m.Sender.Username)
}