sanic/tests/typing/samples/app_custom_ctx.py
2023-07-12 23:47:58 +03:00

10 lines
96 B
Python

from sanic import Sanic
class Foo:
pass
app = Sanic("test", ctx=Foo())
reveal_type(app)