diff options
author | rtkay123 <dev@kanjala.com> | 2025-07-26 10:20:06 +0200 |
---|---|---|
committer | rtkay123 <dev@kanjala.com> | 2025-07-26 10:20:06 +0200 |
commit | 9b9d94205d3e55a5e8a765674ef464e80f3e40fb (patch) | |
tree | c63a236d82694dbf7a621fafeb13c2da988bccd2 /lib/sellershut-core/src/lib.rs | |
parent | 8398104fd50b236619a0c20b7c9b7991ea855917 (diff) | |
download | sellershut-9b9d94205d3e55a5e8a765674ef464e80f3e40fb.tar.bz2 sellershut-9b9d94205d3e55a5e8a765674ef464e80f3e40fb.zip |
feat(profile): create service
Diffstat (limited to 'lib/sellershut-core/src/lib.rs')
-rw-r--r-- | lib/sellershut-core/src/lib.rs | 4 |
1 files changed, 4 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; |