diff options
| author | namilsk <namilsk@namilsk.tech> | 2026-03-24 00:04:23 +0300 |
|---|---|---|
| committer | namilsk <namilsk@namilsk.tech> | 2026-03-24 00:04:23 +0300 |
| commit | b9399611816303da5a06dcfb30a6ab51f70ed4c1 (patch) | |
| tree | f8fb46e5baf0b37313f7065c17fac58708683a96 /src/startup.rs | |
| parent | 39fe1b820b9080ff672a719d523d6b8922866fdc (diff) | |
Fmt & Added CI
Diffstat (limited to 'src/startup.rs')
| -rw-r--r-- | src/startup.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/startup.rs b/src/startup.rs index 10a8441..3a1a09a 100644 --- a/src/startup.rs +++ b/src/startup.rs @@ -1,7 +1,7 @@ // Here we iniitialize systems crucial for nsc -use std::io::Read; -use crate::sniffing::headers::sniff_raw_packets; use crate::sniffing::headers::Protocol; +use crate::sniffing::headers::sniff_raw_packets; +use std::io::Read; pub fn init() -> Result<(), Box<dyn std::error::Error + Send + Sync + 'static>> { let mut config = tun::Configuration::default(); config |
