tftsr-devops_investigation/src-tauri/src/proxmox/mod.rs
Shaun Arman 9808417b44
All checks were successful
Test / frontend-tests (pull_request) Successful in 1m43s
Test / frontend-typecheck (pull_request) Successful in 1m54s
PR Review Automation / review (pull_request) Successful in 6m6s
Test / rust-fmt-check (pull_request) Successful in 13m13s
Test / rust-clippy (pull_request) Successful in 14m25s
Test / rust-tests (pull_request) Successful in 16m28s
feat(proxmox): implement full feature parity with snapshot and network CRUD
- Fix compilation errors in create_vm and clone_vm functions
- Add snapshot operations (list, create, delete, rollback)
- Add network interface CRUD operations
- Update VMList to use actual snapshot functions
- Add TypeScript bindings for all new commands
- All 448 Rust tests and 405 frontend tests passing

Resolves all 6 Proxmox issues for full DCM parity
2026-06-21 20:04:28 -05:00

30 lines
574 B
Rust

// Proxmox integration module
// Provides management for Proxmox VE and Proxmox Backup Server clusters
pub mod acme;
pub mod apt;
pub mod auth_realm;
pub mod backup;
pub mod ceph;
pub mod ceph_cluster;
pub mod certificates;
pub mod client;
pub mod cluster;
pub mod firewall;
pub mod ha;
pub mod metrics;
pub mod migration;
pub mod network;
pub mod node;
pub mod sdn;
pub mod shell;
pub mod storage;
pub mod tasks;
pub mod updates;
pub mod updates_ext;
pub mod views;
pub mod vm;
pub use client::ProxmoxClient;
pub use cluster::{ClusterInfo, ClusterRegistry, ClusterType};