Skip to content

Commit 13c4638

Browse files
committed
use statements should be at the top
Signed-off-by: Sean Young <[email protected]>
1 parent c3b003f commit 13c4638

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: irp/src/lib.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ mod pronto;
1414
pub mod protocols;
1515
mod variants;
1616

17+
pub use build_dfa::DFA;
18+
pub use build_nfa::NFA;
19+
pub use decoder::Decoder;
20+
21+
use num_rational::Rational64;
1722
use std::{collections::HashMap, fmt, rc::Rc};
1823

1924
#[derive(Debug, PartialEq, Default, Eq)]
@@ -212,8 +217,3 @@ impl fmt::Display for Event {
212217
}
213218
}
214219
}
215-
216-
pub use build_dfa::DFA;
217-
pub use build_nfa::NFA;
218-
pub use decoder::Decoder;
219-
use num_rational::Rational64;

0 commit comments

Comments
 (0)