added crud operations for Course

This commit is contained in:
Hosein
2026-01-01 16:24:34 +03:30
parent 4767a1af15
commit 389a763571
8 changed files with 379 additions and 20 deletions
+2 -1
View File
@@ -1,4 +1,4 @@
from . import start, students, teachers, common
from . import start, students, teachers, courses, common
from bot.callbacks.init import register_all_callbacks
@@ -8,6 +8,7 @@ def register_all_handlers(bot):
start.register(bot)
students.register(bot)
teachers.register(bot)
courses.register(bot)
common.register(bot) # Must be last (catch-all)
# Callback handlers