1
0
Fork 0
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:
Alex Kotov 2022-05-31 23:43:52 +03:00
parent 2cd8399f21
commit 75b449a4f6
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08
2 changed files with 4 additions and 4 deletions

View file

@ -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::*;

View file

@ -1,5 +1,5 @@
mod assert;
mod ntoa;
pub mod assert;
pub mod ntoa;
pub use ntoa::*;