async def serve_static_asgi(app: App, scope: ASGIScope, receive: ASGIReceive, send: ASGISend): instance = app.statics(scope) await instance(receive, send)
def serve_static_wsgi(app: App, environ: WSGIEnviron, start_response: WSGIStartResponse): return app.statics(environ, start_response)