Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions crates/vector-core/src/concord/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
//! Concord — Vector's serverless communities protocol.
//!
//! Versioned side by side: [`v1`] is the original in-house protocol (spec in
//! `docs/concord/`); v2 (the public CORD spec) will live beside it. The
//! communities surface reads from every version but new communities are only
//! created on the newest one.
//!
//! `vector_core::community` is a crate-root alias for [`v1`] so existing
//! consumers (src-tauri, vector-sdk, vector-agent, concord-cli) keep working
//! unchanged.

pub mod v1;
pub mod v2;

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
pub mod attachments;
pub mod cache;
pub mod cipher;
pub mod db;
pub mod derive;
pub mod envelope;
pub mod inbound;
Expand Down
Loading