diff options
| author | mo khan <mo@mokhan.ca> | 2025-06-09 19:39:28 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-06-09 19:39:28 -0600 |
| commit | 1b280d0b9be71daf9dffa0f4fa33559eda91946f (patch) | |
| tree | cc301717deabe901ce82ce469fef6be84c1b2bed /src/lib.rs | |
| parent | 50731865b1a22ab250e988aed2ea2bb8a18f9338 (diff) | |
Extract a registered client type
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |
