first pass of merging in warp (doesn't build)

This commit is contained in:
Ryan Ward
2026-07-01 16:08:58 -05:00
parent 2f64909469
commit 4770ac06b5
3662 changed files with 414574 additions and 89772 deletions
+14
View File
@@ -0,0 +1,14 @@
//! This crate defines the low-level, model-agnostic cloud object substrate shared by Warp crates.
//!
//! It owns server-facing identifiers, user identifiers, object metadata, object type and format
//! definitions, and sharing or drive primitives that do not depend on concrete Warp object models.
//!
//! It should remain independent of model-specific payloads, SQLite persistence, app runtime state,
//! and UI rendering concerns.
pub mod auth;
pub mod cloud_object;
pub mod drive;
pub mod ids;
pub use auth::UserUid;