summaryrefslogtreecommitdiff
path: root/server/src/main.rs
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2022-11-15 15:14:48 -0500
committerKjetil Orbekk <kj@orbekk.com>2022-11-15 15:15:06 -0500
commit87ede1e2b367a997440626ad9f583600d7cc42fc (patch)
treea3fd0008714e6d524c2e3b967734a0cfb6cf6cbd /server/src/main.rs
parent1f623cca3ea0937508b8c50f4c32a0972271e8f4 (diff)
Fix rust warnings
Diffstat (limited to 'server/src/main.rs')
-rw-r--r--server/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/main.rs b/server/src/main.rs
index 6056dcd..dd7956a 100644
--- a/server/src/main.rs
+++ b/server/src/main.rs
@@ -81,8 +81,8 @@ async fn main() {
}
async fn get_table_view(
- session: AuthenticatedSession,
- extension: ContextExtension,
+ _session: AuthenticatedSession,
+ _extension: ContextExtension,
Path(id): Path<Uuid>
) -> Result<Json<protocol::TableView>, BridgeError> {
info!("Getting table state for table {id:}");