Files
PyMTA-server/email_server/server_web_ui/__init__.py

18 lines
372 B
Python
Raw Normal View History

"""
SMTP Server Web UI Package
This package provides a web interface for managing the SMTP server.
"""
# First import the blueprint definition
from .routes import email_bp
# Then import all route functions
from .dashboard import *
from .domains import *
from .senders import *
from .ip_whitelist import *
from .dkim import *
from .settings import *
from .logs import *