diff options
| author | mo khan <mo@mokhan.ca> | 2025-06-11 14:06:07 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-06-11 14:06:07 -0600 |
| commit | d612e590cb4f5b633abc316f2e105924226a7d6f (patch) | |
| tree | 84103cfbc80099745fedfa2d9f22118dbf539eb5 /src/lib.rs | |
| parent | 6abae9d4b410bad780635f361d183d043089cf57 (diff) | |
Add database migrations
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |
