diff options
Diffstat (limited to 'lib/sellershut-core/src')
-rw-r--r-- | lib/sellershut-core/src/lib.rs | 4 | ||||
-rw-r--r-- | lib/sellershut-core/src/profile.rs | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lib/sellershut-core/src/lib.rs b/lib/sellershut-core/src/lib.rs index ee2ed9b..c300495 100644 --- a/lib/sellershut-core/src/lib.rs +++ b/lib/sellershut-core/src/lib.rs @@ -10,4 +10,8 @@ #[cfg(feature = "auth")] pub mod google; +/// Interactions with Auth server pub mod auth; + +/// Interactions with Profile server +pub mod profile; diff --git a/lib/sellershut-core/src/profile.rs b/lib/sellershut-core/src/profile.rs new file mode 100644 index 0000000..bf366b1 --- /dev/null +++ b/lib/sellershut-core/src/profile.rs @@ -0,0 +1,3 @@ +tonic::include_proto!("profile"); +/// Profile file descriptor +pub const PROFILE_FILE_DESCRIPTOR_SET: &[u8] = tonic::include_file_descriptor_set!("profile_descriptor"); |