diff options
author | rtkay123 <dev@kanjala.com> | 2025-07-27 18:16:41 +0200 |
---|---|---|
committer | rtkay123 <dev@kanjala.com> | 2025-07-27 18:16:41 +0200 |
commit | 3c4d17cf2840c643b8cd111ef775750cc5ae83b3 (patch) | |
tree | 2b7d25b24d94141a6d9255426d4f973cced5d278 /lib/sellershut-core/src/lib.rs | |
parent | e26d87f4fa18999c6bcfbcf32cfa85adab11acdd (diff) | |
download | sellershut-3c4d17cf2840c643b8cd111ef775750cc5ae83b3.tar.bz2 sellershut-3c4d17cf2840c643b8cd111ef775750cc5ae83b3.zip |
refactor: profile -> users
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; |