Skip to main content

this_me/core/
mod.rs

1// Storage-agnostic core API for this.me
2// Exposes a generic Me<S: MeStore> over pluggable backends (Postgres, etc.)
3pub mod model;
4pub mod store;
5pub mod me;
6// Re-exports for ergonomic access from crate users:
7// use this_me::core::{Me, MeStore, Entry, GetFilter};
8pub use model::{Entry, GetFilter};
9pub use store::MeStore;
10pub use me::Me;