sanic/guide/server.py
2023-10-25 03:02:26 +01:00

7 lines
113 B
Python

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