From 5ffc9b007ccbd8a4510b58de72aaee53291d7973 Mon Sep 17 00:00:00 2001 From: mo khan Date: Wed, 11 Jun 2025 17:11:39 -0600 Subject: refactor: apply SOLID principles --- src/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index eef2cbf..2b25e8a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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}; -- cgit v1.2.3