9 lines
250 B
Python
9 lines
250 B
Python
from webapi.middleware.api_key_middleware import NotificationServiceMiddleware
|
|
|
|
|
|
def register(app):
|
|
"""
|
|
Register middleware to FastAPI application
|
|
"""
|
|
# Register API Key middleware
|
|
app.add_middleware(NotificationServiceMiddleware) |