added crud opertions for tag entity

This commit is contained in:
Hosein
2026-01-01 23:34:44 +03:30
parent 389a763571
commit 7b6c2a3245
8 changed files with 324 additions and 6 deletions
+2 -1
View File
@@ -1,4 +1,4 @@
from . import students, teachers, courses
from . import students, teachers, courses, tags
from bot.handlers.start import startMarkup
@@ -7,6 +7,7 @@ def register_all_callbacks(bot):
students.register(bot)
teachers.register(bot)
courses.register(bot)
tags.register(bot)
# Cancel is common among all
@bot.callback_query_handler(func=lambda call: call.data == 'cancel')