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