ReminderBot/bot/states.py
leo f453a7917e Initial commit: add reminderBot project structure
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 11:40:58 +08:00

11 lines
220 B
Python

# ConversationHandler states for creating a reminder
CHOOSE_TYPE = 0
INPUT_TITLE = 1
INPUT_DESC = 2
INPUT_TIME = 3
INPUT_WEEKLY_DAYS = 4
INPUT_INTERVAL_MINUTES = 5
INPUT_INTERVAL_WINDOW = 6
INPUT_HOLIDAY = 7
CONFIRM = 8