summaryrefslogtreecommitdiff
path: root/src/state.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-08-23 22:19:32 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-08-23 22:19:32 +0200
commit7b9e9d2da5d85f23d43724fe2ca5012918ea54be (patch)
tree801ccae65d27fcf69bfca5db18265fbb7b5d7f21 /src/state.rs
parentcb1aa9668a967fe875e716469ccf936ed8693ad3 (diff)
Add doc
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>,
}