diff options
Diffstat (limited to 'lib/sellershut-core/src/lib.rs')
-rw-r--r-- | lib/sellershut-core/src/lib.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sellershut-core/src/lib.rs b/lib/sellershut-core/src/lib.rs index 70544cf..afbd20f 100644 --- a/lib/sellershut-core/src/lib.rs +++ b/lib/sellershut-core/src/lib.rs @@ -7,13 +7,13 @@ )] /// Protobuf types -#[cfg(any(feature = "auth", feature = "profile"))] +#[cfg(any(feature = "auth", feature = "users"))] pub mod google; /// Interactions with Auth server #[cfg(feature = "auth")] pub mod auth; -/// Interactions with Profile server -#[cfg(feature = "profile")] -pub mod profile; +/// Interactions with user server +#[cfg(feature = "users")] +pub mod users; |