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