Deleted posts command

This commit is contained in:
2024-02-15 12:16:47 +03:00
parent f1d1fa1914
commit 77a916dc0b
3 changed files with 32 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ from aiogram import Bot
from handlers.handler import Handler
from handlers.message_handlers.delete_command import DeleteCommand
from handlers.message_handlers.deleted_posts_command import DeletedPostsCommand
from handlers.message_handlers.edit_command import EditCommand
from handlers.message_handlers.info_command import InfoCommand
from handlers.message_handlers.newpost_command import (NewPostCommand,
@@ -36,5 +37,6 @@ class AdminCommands(Handler):
NewPostSoloCommand,
PreviewCommand,
DeleteCommand,
DeletedPostsCommand,
ReplyToUserCommand
])