10 lines
91 B
Rust
10 lines
91 B
Rust
mod a {
|
|
pub mod error {}
|
|
}
|
|
pub use a::*;
|
|
|
|
mod b {
|
|
pub mod error {}
|
|
}
|
|
pub use b::*;
|