Files
KubeDiagrams/webapp/backend/routes/__init__.py
2026-02-10 10:51:54 +01:00

7 lines
220 B
Python

"""Routes Package Init File"""
from .manifest import manifest_bp
from .helm import helm_bp
from .helmfile import helmfile_bp
from .submit import submit_bp
__all__ = ['manifest_bp', 'helm_bp', 'helmfile_bp', 'submit_bp']