meta: initial commit

This commit is contained in:
2026-03-05 01:24:39 -05:00
commit e759b78d20
10 changed files with 7461 additions and 0 deletions

10
src/lib.rs Normal file
View File

@@ -0,0 +1,10 @@
mod one_to_many;
mod one_to_many_with_data;
mod one_to_one;
mod vc_user;
pub use one_to_many::OneToManyUniqueBTreeMap;
pub use one_to_many_with_data::OneToManyUniqueBTreeMapWithData;
pub use one_to_one::OneToOneBTreeMap;
pub use vc_user::{UserInVCData, VoiceStatus};