11 lines
157 B
Python
11 lines
157 B
Python
from sanic import Sanic
|
|
from sanic.config import Config
|
|
|
|
|
|
class CustomConfig(Config):
|
|
pass
|
|
|
|
|
|
app = Sanic("test", config=CustomConfig())
|
|
reveal_type(app)
|