mirror of
https://github.com/tailix/libkernaux.git
synced 2025-02-17 15:45:32 -05:00
Rust: "pub mod"
This commit is contained in:
parent
2cd8399f21
commit
75b449a4f6
2 changed files with 4 additions and 4 deletions
|
@ -3,8 +3,8 @@
|
|||
#[cfg(test)]
|
||||
extern crate std;
|
||||
|
||||
mod assert;
|
||||
mod ntoa;
|
||||
pub mod assert;
|
||||
pub mod ntoa;
|
||||
|
||||
pub use assert::*;
|
||||
pub use ntoa::*;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
mod assert;
|
||||
mod ntoa;
|
||||
pub mod assert;
|
||||
pub mod ntoa;
|
||||
|
||||
pub use ntoa::*;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue