2023-09-07 08:38:48 +01:00
|
|
|
"""Sanic User Guide
|
|
|
|
|
|
|
|
https://sanic.dev
|
|
|
|
|
|
|
|
Built using the SHH stack:
|
|
|
|
- Sanic
|
|
|
|
- html5tagger
|
|
|
|
- HTMX"""
|
2023-09-06 13:44:00 +01:00
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
from webapp.worker.factory import create_app
|
|
|
|
|
|
|
|
app = create_app(Path(__file__).parent)
|