Implements share link generation.

This commit is contained in:
2026-08-23 06:24:41 -07:00
parent 165a671eb7
commit 691c4a7d80
4 changed files with 319 additions and 7 deletions

View File

@@ -8,6 +8,7 @@ pub mod config;
pub mod error;
pub mod models;
pub mod progress;
pub mod sharing;
pub mod webdav;
// Convenient top-level re-exports
@@ -16,3 +17,4 @@ pub use config::{AccountCredentials, ClientConfig};
pub use error::{NextcloudError, Result};
pub use models::{UploadOptions, UploadResult};
pub use progress::{ProgressCallback, ProgressEvent};
pub use sharing::{CreateShareParams, ShareInfo, ShareType};