summaryrefslogtreecommitdiffstats
path: root/lib/sellershut-core/src/lib.rs
diff options
context:
space:
mode:
authorrtkay123 <dev@kanjala.com>2025-07-25 18:37:28 +0200
committerrtkay123 <dev@kanjala.com>2025-07-25 18:37:28 +0200
commit3831e5a42ab4e21f116537c5251582245de37f0b (patch)
treede6b5e41b6bbac7c48f617a293a670cdbd43c77a /lib/sellershut-core/src/lib.rs
parentcd528dbb7fb5d596b47178110a3dcef9af573c8d (diff)
downloadsellershut-3831e5a42ab4e21f116537c5251582245de37f0b.tar.bz2
sellershut-3831e5a42ab4e21f116537c5251582245de37f0b.zip
feat(lib): auth rpc
Diffstat (limited to 'lib/sellershut-core/src/lib.rs')
-rw-r--r--lib/sellershut-core/src/lib.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/sellershut-core/src/lib.rs b/lib/sellershut-core/src/lib.rs
new file mode 100644
index 0000000..ee2ed9b
--- /dev/null
+++ b/lib/sellershut-core/src/lib.rs
@@ -0,0 +1,13 @@
+//! Core
+#![cfg_attr(docsrs, feature(doc_cfg))]
+#![warn(
+ missing_docs,
+ rustdoc::broken_intra_doc_links,
+ missing_debug_implementations
+)]
+
+/// Protobuf types
+#[cfg(feature = "auth")]
+pub mod google;
+
+pub mod auth;