sanic/guide/server.py
2023-09-07 10:38:48 +03:00

14 lines
212 B
Python

"""Sanic User Guide
https://sanic.dev
Built using the SHH stack:
- Sanic
- html5tagger
- HTMX"""
from pathlib import Path
from webapp.worker.factory import create_app
app = create_app(Path(__file__).parent)