Files
krawl.es/src/templates/__init__.py

16 lines
291 B
Python
Raw Normal View History

#!/usr/bin/env python3
"""
Templates package for the deception server.
"""
from .template_loader import load_template, clear_cache, TemplateNotFoundError
from . import html_templates
__all__ = [
2026-01-23 22:00:21 +01:00
"load_template",
"clear_cache",
"TemplateNotFoundError",
"html_templates",
]