add all_lessons

This commit is contained in:
2023-01-11 02:00:07 +07:00
parent 78705f95ea
commit 6325033fdf
8 changed files with 66 additions and 104 deletions
+2
View File
@@ -4,6 +4,7 @@ type Command string
//today_lessons - пары сегодня
//tomorrow_lessons - пары завтра
//all_lessons - пары на несколько дней
//weather - погода у универа
//new_year - дней до нового года
//ping - проверка связи
@@ -14,6 +15,7 @@ const (
Ping = Command("/ping")
TodayLessons = Command("/today_lessons")
TomorrowLessons = Command("/tomorrow_lessons")
AllLessons = Command("/all_lessons")
Weather = Command("/weather")
NewYear = Command("/new_year")
)