2022-03-05 18:02:55 +00:00
|
|
|
|
package commands
|
|
|
|
|
|
|
|
|
|
type Command string
|
|
|
|
|
|
|
|
|
|
//today_lessons - пары сегодня
|
|
|
|
|
//tomorrow_lessons - пары завтра
|
2023-01-10 19:00:07 +00:00
|
|
|
|
//all_lessons - пары на несколько дней
|
2022-03-05 18:02:55 +00:00
|
|
|
|
//weather - погода у универа
|
|
|
|
|
//new_year - дней до нового года
|
|
|
|
|
//ping - проверка связи
|
|
|
|
|
//help - помощь
|
|
|
|
|
const (
|
|
|
|
|
Start = Command("/start")
|
|
|
|
|
Help = Command("/help")
|
|
|
|
|
Ping = Command("/ping")
|
|
|
|
|
TodayLessons = Command("/today_lessons")
|
|
|
|
|
TomorrowLessons = Command("/tomorrow_lessons")
|
2023-02-10 08:51:04 +00:00
|
|
|
|
AllLessons = Command("/all_lessons")
|
2022-03-05 18:02:55 +00:00
|
|
|
|
Weather = Command("/weather")
|
|
|
|
|
NewYear = Command("/new_year")
|
|
|
|
|
)
|