summaryrefslogtreecommitdiff
path: root/src/state.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/state.rs')
-rw-r--r--src/state.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/state.rs b/src/state.rs
index 876a5f4..700f6ab 100644
--- a/src/state.rs
+++ b/src/state.rs
@@ -3,6 +3,8 @@ use std::sync::Arc;
use tokio_postgres::Client;
#[derive(Clone)]
+/// State application shared through Axum
pub struct AppState {
+ /// PostgreSQL client synced via Arc
pub client: Arc<Client>,
}