2025-12-24 09:36:00 -06:00
|
|
|
#!/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",
|
2025-12-24 09:36:00 -06:00
|
|
|
]
|