mirror of
https://git.klmp200.net/ALFRED/ALFRED.git
synced 2025-01-18 18:46:44 +01:00
20 lines
373 B
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)
|
|
}
|