sanic/guide/server.py

14 lines
212 B
Python
Raw Permalink Normal View History

2023-09-07 08:38:48 +01:00
"""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)