Implements webdav uploads.

This commit is contained in:
2026-08-23 06:13:29 -07:00
parent 3703d4ddf2
commit 165a671eb7
7 changed files with 324 additions and 9 deletions

View File

@@ -7,9 +7,12 @@ pub mod client;
pub mod config;
pub mod error;
pub mod models;
pub mod progress;
pub mod webdav;
// Convenient top-level re-exports
pub use client::{NextcloudClient, ServerStatus};
pub use config::{AccountCredentials, ClientConfig};
pub use error::{NextcloudError, Result};
pub use models::{UploadOptions, UploadResult};
pub use progress::{ProgressCallback, ProgressEvent};