summaryrefslogtreecommitdiff
path: root/rust/examples/flowgraph/src
diff options
context:
space:
mode:
Diffstat (limited to 'rust/examples/flowgraph/src')
-rw-r--r--rust/examples/flowgraph/src/lib.rs12
1 files changed, 5 insertions, 7 deletions
diff --git a/rust/examples/flowgraph/src/lib.rs b/rust/examples/flowgraph/src/lib.rs
index e0c47d9f..799b0470 100644
--- a/rust/examples/flowgraph/src/lib.rs
+++ b/rust/examples/flowgraph/src/lib.rs
@@ -1,10 +1,8 @@
-use binaryninja::binaryview::{BinaryView, BinaryViewExt};
-use binaryninja::command::register;
-use binaryninja::disassembly::{
- DisassemblyTextLine, InstructionTextToken, InstructionTextTokenType,
-};
-use binaryninja::flowgraph::{
- BranchType, EdgePenStyle, EdgeStyle, FlowGraph, FlowGraphNode, ThemeColor,
+use binaryninja::{
+ binaryview::{BinaryView, BinaryViewExt},
+ command::register,
+ disassembly::{DisassemblyTextLine, InstructionTextToken, InstructionTextTokenType},
+ flowgraph::{BranchType, EdgePenStyle, EdgeStyle, FlowGraph, FlowGraphNode, ThemeColor},
};
fn test_graph(view: &BinaryView) {