Skip to content

Commit

Permalink
rust lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dutchie032 committed Sep 10, 2024
1 parent 32a0bf4 commit e4b2791
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ mod trigger;
mod unit;
mod world;


#[derive(Clone)]
pub struct MissionRpc {
ipc: IPC<StreamEventsResponse>,
Expand Down
4 changes: 2 additions & 2 deletions src/rpc/administration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use super::MissionRpc;
#[async_trait]
impl AdministrationService for MissionRpc {
async fn get_health(
&self,
&self,
_request: Request<administration::v0::GetHealthRequest>,
) -> Result<Response<administration::v0::GetHealthResponse>, Status> {
let alive: bool = true;
Expand All @@ -27,4 +27,4 @@ impl AdministrationService for MissionRpc {
version,
}));
}
}
}

0 comments on commit e4b2791

Please sign in to comment.