10 lines
187 B
Python
10 lines
187 B
Python
from aiogram import Bot, Router
|
|
from rich import print
|
|
|
|
router = Router()
|
|
|
|
|
|
@router.startup()
|
|
async def startup(bot: Bot):
|
|
print(f"[green]Started as[/] @{(await bot.me()).username}")
|