- add: missing call to dotenv

- remove: unreachable code in route_packet
This commit is contained in:
2024-11-26 13:17:27 -05:00
parent 47899d47cd
commit 889fde4636
2 changed files with 2 additions and 2 deletions

View File

@@ -10,6 +10,4 @@ pub async fn route_packet(data: &[u8]) -> Result<(), Box<dyn Error>> {
// 2 => movement::handle_movement(packet).await?,
_ => return Err("Unknown packet type".into()),
}
Ok(())
}