-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
42c17a7
commit e9915f7
Showing
3 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
import asyncio | ||
from typing import Annotated | ||
|
||
from aiogram import Bot, Dispatcher, Router | ||
from aiogram.filters import Command | ||
from aiogram.types import Message | ||
from benchmark.container import create_container | ||
|
||
from aioinject import Inject, Object | ||
from aioinject.ext.aiogram import AioInjectMiddleware, inject | ||
|
||
|
||
async def main() -> None: | ||
dispatcher = Dispatcher() | ||
|
||
container = create_container() | ||
container.register(Object(42)) | ||
|
||
router = Router() | ||
|
||
@router.message( | ||
Command(commands=["start"]), | ||
) | ||
@inject | ||
async def start( | ||
message: Message, | ||
value: Annotated[int, Inject], | ||
) -> None: | ||
await message.reply(f"Injected value is {value}") | ||
|
||
middleware = AioInjectMiddleware(container) | ||
middleware.add_to_router(router) | ||
|
||
dispatcher.include_router(router) | ||
|
||
async with ( | ||
container, | ||
Bot(token="token-here") as bot, # noqa: S106 | ||
): | ||
await dispatcher.start_polling(bot) | ||
|
||
|
||
if __name__ == "__main__": | ||
asyncio.run(main()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Aiogram integration is achieved with `AioInjectMiddleware`, which you | ||
could register on individual observers or | ||
on all observers in a router via `add_to_router` method: | ||
|
||
```python | ||
--8<-- "docs/code/integrations/aiogram_.py" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters