18 lines
378 B
Python
18 lines
378 B
Python
"""
|
|
Proxmox MCP formatting package for styled output.
|
|
"""
|
|
|
|
from .theme import ProxmoxTheme
|
|
from .colors import ProxmoxColors
|
|
from .formatters import ProxmoxFormatters
|
|
from .templates import ProxmoxTemplates
|
|
from .components import ProxmoxComponents
|
|
|
|
__all__ = [
|
|
'ProxmoxTheme',
|
|
'ProxmoxColors',
|
|
'ProxmoxFormatters',
|
|
'ProxmoxTemplates',
|
|
'ProxmoxComponents'
|
|
]
|