Files
krawl.es/src/templates/__init__.py
2026-01-23 22:00:21 +01:00

16 lines
291 B
Python

#!/usr/bin/env python3
"""
Templates package for the deception server.
"""
from .template_loader import load_template, clear_cache, TemplateNotFoundError
from . import html_templates
__all__ = [
"load_template",
"clear_cache",
"TemplateNotFoundError",
"html_templates",
]