New plugin: Coolify deployment management (applications, deployments, servers). 10 plugins, 596 tools, 686 tests passing. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
14 lines
194 B
Python
14 lines
194 B
Python
"""
|
|
Coolify Plugin Handlers
|
|
|
|
All tool handlers for Coolify operations.
|
|
"""
|
|
|
|
from . import applications, deployments, servers
|
|
|
|
__all__ = [
|
|
"applications",
|
|
"deployments",
|
|
"servers",
|
|
]
|