This commit is contained in:
2026-01-06 13:39:22 +07:00
parent 4708029378
commit 4303b81de4
4 changed files with 5 additions and 4 deletions

3
.gitignore vendored
View File

@@ -174,4 +174,5 @@ Thumbs.db
*.swp
*.swo
*~
**.wg0.conf
**.wg0.conf
**.db

View File

@@ -13,9 +13,9 @@ from telegram.ext import Application, ContextTypes
# Импорты из наших модулей
from config import *
from database import init_db
from handlers import help_handler, unknown_command, callback_taken
from app.handlers import help_handler, unknown_command, callback_taken
from conversations import *
from utils import main_menu_kb
from app.utils import main_menu_kb
# Отключаем предупреждения PTB
warnings.filterwarnings("ignore", category=UserWarning)

View File

@@ -8,7 +8,7 @@ from telegram import Update, ReplyKeyboardRemove
from telegram.ext import ContextTypes, ConversationHandler, CallbackQueryHandler, MessageHandler, filters
from config import *
from utils import *
from app.utils import *
from database import get_db_connection
logger = logging.getLogger(__name__)

Binary file not shown.