sanic/guide/server.py
2023-09-06 15:44:00 +03:00

6 lines
112 B
Python

from pathlib import Path
from webapp.worker.factory import create_app
app = create_app(Path(__file__).parent)