diff options
author | Simon THOBY <git@nightmared.fr> | 2022-11-12 16:37:38 +0100 |
---|---|---|
committer | Simon THOBY <git@nightmared.fr> | 2022-11-12 16:37:38 +0100 |
commit | f8effdd348e38f51f6ec7b24c4c27e6602538445 (patch) | |
tree | 49334f265a27ea39f115d498780ecba3581728d3 /src/lib.rs | |
parent | cc717f0aed28138ee1a422c790dd129bfc1bfdc1 (diff) |
tests: fix the NetlinkExpr ordering
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -97,13 +97,13 @@ pub use batch::{default_batch_page_size, Batch}; //pub mod expr; -pub mod table; +mod table; pub use table::list_tables; pub use table::Table; -pub mod chain; +mod chain; pub use chain::list_chains_for_table; -pub use chain::{Chain, ChainPolicy, ChainPriority, ChainType, Hook}; +pub use chain::{Chain, ChainPolicy, ChainPriority, ChainType, Hook, HookClass}; //mod chain_methods; //pub use chain_methods::ChainMethods; |