Flattens brain module structure
Renames the `mod.rs` file for the `brain` module to `brain.rs`. This simplifies the module path and aligns with standard Rust practices for modules defined entirely within a single file.
This commit is contained in:
parent
c05b771e76
commit
3e13aa2261
1 changed files with 1 additions and 0 deletions
|
|
@ -1,4 +1,5 @@
|
||||||
pub mod state;
|
pub mod state;
|
||||||
|
|
||||||
pub use self::state::State;
|
pub use self::state::State;
|
||||||
use tracing::info;
|
use tracing::info;
|
||||||
use std::thread::JoinHandle;
|
use std::thread::JoinHandle;
|
||||||
Loading…
Reference in a new issue