From d612e590cb4f5b633abc316f2e105924226a7d6f Mon Sep 17 00:00:00 2001 From: mo khan Date: Wed, 11 Jun 2025 14:06:07 -0600 Subject: Add database migrations --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 0ab228e..eef2cbf 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,10 +3,12 @@ pub mod config; pub mod database; pub mod http; pub mod keys; +pub mod migrations; pub mod oauth; pub use clients::ClientManager; pub use config::Config; pub use database::Database; pub use http::Server; +pub use migrations::MigrationRunner; pub use oauth::OAuthServer; -- cgit v1.2.3