netadm/config/__init__.py

9 lines
115 B
Python
Raw Normal View History

2024-10-20 15:53:02 +00:00
from .config import conf, STATIC_DIR, TEMPLATES_DIR
2024-10-20 09:45:39 +00:00
__all__ = [
"conf",
STATIC_DIR,
2024-10-20 15:53:02 +00:00
TEMPLATES_DIR,
2024-10-20 09:45:39 +00:00
]