From 3831e5a42ab4e21f116537c5251582245de37f0b Mon Sep 17 00:00:00 2001 From: rtkay123 Date: Fri, 25 Jul 2025 18:37:28 +0200 Subject: feat(lib): auth rpc --- lib/sellershut-core/src/lib.rs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lib/sellershut-core/src/lib.rs (limited to 'lib/sellershut-core/src/lib.rs') 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; -- cgit v1.2.3