verochka/commands/commands.go

22 lines
667 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package commands
type Command string
//today_lessons - пары сегодня
//tomorrow_lessons - пары завтра
//all_lessons - пары на несколько дней
//weather - погода у универа
//new_year - дней до нового года
//ping - проверка связи
//help - помощь
const (
Start = Command("/start")
Help = Command("/help")
Ping = Command("/ping")
TodayLessons = Command("/today_lessons")
TomorrowLessons = Command("/tomorrow_lessons")
AllLessons = Command("/all_lessons")
Weather = Command("/weather")
NewYear = Command("/new_year")
)