ASGI Integration
waku
can be seamlessly integrated into any ASGI application. To achieve this, set up waku
as you normally would,
then add the ApplicationMiddleware
to your ASGI application’s middleware stack.
Example with FastAPI
| from fastapi import FastAPI
from fastapi.middleware import Middleware
from waku import Application
from waku.contrib.asgi import ApplicationMiddleware
def bootstrap_application() -> Application:
# Replace with your actual waku app setup (e.g., ApplicationFactory.create)
...
# Create the waku application
application = bootstrap_application()
# Create the FastAPI app with the waku middleware
app = FastAPI(
middleware=[
Middleware(ApplicationMiddleware, application=application),
],
)
|
In this example, the ApplicationMiddleware
bridges waku
with FastAPI, allowing dependency injection and module
management within your ASGI routes.