blob: afbd20f1feb8585ade1569b45d35bf84e7833834 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//! Core
#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(
missing_docs,
rustdoc::broken_intra_doc_links,
missing_debug_implementations
)]
/// Protobuf types
#[cfg(any(feature = "auth", feature = "users"))]
pub mod google;
/// Interactions with Auth server
#[cfg(feature = "auth")]
pub mod auth;
/// Interactions with user server
#[cfg(feature = "users")]
pub mod users;
|