Commit cad6cb73 authored by Nawasan Wisitsingkhon's avatar Nawasan Wisitsingkhon

remove extern crate from readme (example code)

parent 84dfbd2f
...@@ -80,7 +80,6 @@ After you install `tenjin_sdn` to your project with feature `example`, you can r ...@@ -80,7 +80,6 @@ After you install `tenjin_sdn` to your project with feature `example`, you can r
```rust ```rust
use tenjin::{example, openflow::ofp13::ControllerFrame13}; use tenjin::{example, openflow::ofp13::ControllerFrame13};
extern crate byteorder;
fn main() { fn main() {
let controller = example::Controller13::new(); let controller = example::Controller13::new();
...@@ -93,7 +92,6 @@ fn main() { ...@@ -93,7 +92,6 @@ fn main() {
```rust ```rust
use tenjin::{example, openflow::ofp10::ControllerFrame10}; use tenjin::{example, openflow::ofp10::ControllerFrame10};
extern crate byteorder;
fn main() { fn main() {
let controller = example::Controller10::new(); let controller = example::Controller10::new();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment