Spaces:
Sleeping
Sleeping
| #!/usr/bin/env python3 | |
| """Delegation MCP Installer - One-command setup.""" | |
| if __name__ == "__main__": | |
| from src.delegation_mcp.installer import DelegationInstaller | |
| import sys | |
| installer = DelegationInstaller() | |
| success = installer.install() | |
| sys.exit(0 if success else 1) | |