From 1e619f90a04ae81f4d19709efe8afdaa2d1c2034 Mon Sep 17 00:00:00 2001 From: Orne Brocaar Date: Wed, 15 Nov 2023 12:58:22 +0000 Subject: [PATCH] Fix fmt issue. --- chirpstack/src/storage/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chirpstack/src/storage/mod.rs b/chirpstack/src/storage/mod.rs index c060cf81..60b105fa 100644 --- a/chirpstack/src/storage/mod.rs +++ b/chirpstack/src/storage/mod.rs @@ -23,6 +23,7 @@ pub mod downlink_frame; pub mod error; pub mod fields; pub mod gateway; +pub mod helpers; pub mod mac_command; pub mod metrics; pub mod multicast; @@ -32,7 +33,6 @@ pub mod schema; pub mod search; pub mod tenant; pub mod user; -pub mod helpers; pub type PgPool = Pool>; pub type PgPoolConnection = PooledConnection>;