summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-06-09 19:39:28 -0600
committermo khan <mo@mokhan.ca>2025-06-09 19:39:28 -0600
commit1b280d0b9be71daf9dffa0f4fa33559eda91946f (patch)
treecc301717deabe901ce82ce469fef6be84c1b2bed /src/lib.rs
parent50731865b1a22ab250e988aed2ea2bb8a18f9338 (diff)
Extract a registered client type
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 1bff27d..4ed4b7d 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,8 +1,10 @@
+pub mod clients;
pub mod config;
pub mod http;
pub mod keys;
pub mod oauth;
+pub use clients::ClientManager;
pub use config::Config;
pub use http::Server;
pub use oauth::OAuthServer;