Initial commit

This commit is contained in:
2022-03-06 01:02:55 +07:00
commit c06ae8317f
14 changed files with 700 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
package commands
type Command string
//today_lessons - пары сегодня
//tomorrow_lessons - пары завтра
//weather - погода у универа
//new_year - дней до нового года
//ping - проверка связи
//help - помощь
const (
Start = Command("/start")
Help = Command("/help")
Ping = Command("/ping")
TodayLessons = Command("/today_lessons")
TomorrowLessons = Command("/tomorrow_lessons")
Weather = Command("/weather")
NewYear = Command("/new_year")
)