summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-06-11 14:06:07 -0600
committermo khan <mo@mokhan.ca>2025-06-11 14:06:07 -0600
commitd612e590cb4f5b633abc316f2e105924226a7d6f (patch)
tree84103cfbc80099745fedfa2d9f22118dbf539eb5 /src/lib.rs
parent6abae9d4b410bad780635f361d183d043089cf57 (diff)
Add database migrations
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 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;