rama_net/user/
mod.rs

1//! types and utilities for network users
2//!
3//! Users can be humans or bots.
4
5mod id;
6#[doc(inline)]
7pub use id::UserId;
8
9pub mod credentials;
10#[doc(inline)]
11pub use credentials::{Basic, Bearer, ProxyCredential};