tftsr-devops_investigation/src-tauri/src/proxmox/mod.rs
Shaun Arman 3f0bd5a077 feat: implement Proxmox cluster management foundation
- Add proxmox module with client, cluster, and resource management
- Implement VM management stubs with full API documentation
- Add database migrations for proxmox_clusters and proxmox_resources tables
- Implement IPC commands for cluster CRUD operations
- Add Proxmox state management to AppState
- Create 22 unit tests for Proxmox modules (all passing)
- Update lib.rs, state.rs, and integrations.rs for Proxmox integration
2026-06-10 21:50:30 -05:00

19 lines
381 B
Rust

// Proxmox integration module
// Provides management for Proxmox VE and Proxmox Backup Server clusters
pub mod backup;
pub mod ceph;
pub mod client;
pub mod cluster;
pub mod firewall;
pub mod ha;
pub mod metrics;
pub mod node;
pub mod sdn;
pub mod storage;
pub mod updates;
pub mod vm;
pub use client::ProxmoxClient;
pub use cluster::{ClusterInfo, ClusterRegistry, ClusterType};