7 lines
83 B
Python
7 lines
83 B
Python
|
from sanic import Sanic
|
||
|
|
||
|
|
||
|
def run():
|
||
|
app = Sanic("FactoryTest")
|
||
|
return app
|