diff options
Diffstat (limited to 'server/src/main.rs')
-rw-r--r-- | server/src/main.rs | 4 |
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:}"); |