Skip to content

Commit 4f25dd0

Browse files
committed
run fmt
1 parent e99b7ca commit 4f25dd0

File tree

1 file changed

+15
-5
lines changed
  • crates/fig_os_shim/src/process_info

1 file changed

+15
-5
lines changed

crates/fig_os_shim/src/process_info/mod.rs

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
mod pid;
22

33
use std::path::PathBuf;
4-
use std::sync::{Arc, Weak};
5-
6-
pub use pid::{FakePid, Pid, RawPid};
7-
8-
use crate::{Context, Shim};
4+
use std::sync::{
5+
Arc,
6+
Weak,
7+
};
8+
9+
pub use pid::{
10+
FakePid,
11+
Pid,
12+
RawPid,
13+
};
14+
15+
use crate::{
16+
Context,
17+
Shim,
18+
};
919

1020
#[cfg(target_os = "linux")]
1121
mod linux;

0 commit comments

Comments
 (0)