generated from FOSS/Bot-Template
29 lines
851 B
Python
29 lines
851 B
Python
# - *- coding: utf- 8 - *-
|
|
from aiogram import Router, Bot, F
|
|
from aiogram.filters import Command
|
|
from aiogram.types import Message
|
|
|
|
from tgbot.database.db_users import UserModel
|
|
from tgbot.keyboards.reply_main import menu_frep
|
|
from tgbot.utils.const_functions import ded
|
|
from tgbot.utils.misc.bot_models import FSM, ARS
|
|
|
|
router = Router(name=__name__)
|
|
|
|
|
|
# Главное меню пользователя
|
|
# @router.message(F.text.in_(("menu", "return", "start")))
|
|
# @router.message(Command(commands=["start"]))
|
|
async def main_start(
|
|
message: Message, bot: Bot, state: FSM, arSession: ARS, User: UserModel
|
|
):
|
|
await state.clear()
|
|
|
|
await message.answer(
|
|
ded(f"""
|
|
🔸 Привет, {User.user_name}
|
|
🔸 Введи /start или /menu
|
|
"""),
|
|
reply_markup=menu_frep(message.from_user.id),
|
|
)
|