style: fmt postgres lib.rs

This commit is contained in:
2026-05-31 11:12:18 +02:00
parent e082387f6e
commit aff772f6d7

View File

@@ -1,19 +1,19 @@
pub mod db;
pub mod identity;
pub mod storage;
pub mod catalog;
pub mod identity;
pub mod organization;
pub mod processing;
pub mod sharing;
pub mod sidecar;
pub mod processing;
pub mod storage;
pub use db::{PgPool, connect, run_migrations};
pub use identity::*;
pub use storage::*;
pub use catalog::*;
pub use identity::*;
pub use organization::*;
pub use processing::*;
pub use sharing::*;
pub use sidecar::*;
pub use processing::*;
pub use storage::*;