diff options
| author | mo khan <mo@mokhan.ca> | 2025-06-11 17:11:39 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-06-11 17:11:39 -0600 |
| commit | 5ffc9b007ccbd8a4510b58de72aaee53291d7973 (patch) | |
| tree | f696a2a7599926d402c5456c434bd87e5e325c3a /src/lib.rs | |
| parent | dbd3c780f27bd5bee23adf6e280b84d669230e0d (diff) | |
refactor: apply SOLID principles
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,14 +1,17 @@ pub mod clients; pub mod config; +pub mod container; pub mod database; pub mod http; pub mod keys; pub mod migrations; pub mod oauth; +pub mod repositories; +pub mod services; pub use clients::ClientManager; pub use config::Config; pub use database::Database; pub use http::Server; pub use migrations::MigrationRunner; -pub use oauth::OAuthServer; +pub use oauth::{OAuthServer, OAuthService}; |
