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:
Russell Gilbert 2026-02-27 14:46:12 +00:00
parent c05b771e76
commit 3e13aa2261

View file

@ -1,4 +1,5 @@
pub mod state;
pub use self::state::State;
use tracing::info;
use std::thread::JoinHandle;