Removes redundant brain state definition

The `State` enum, along with its variants (Starting, Running, Stopping, Stopped), is no longer required for managing the brain's operational stages. This change simplifies the codebase by removing an unnecessary abstraction.
This commit is contained in:
Russell Gilbert 2026-03-03 09:39:35 +00:00
parent 58e1197ff4
commit ee01746956
2 changed files with 1 additions and 8 deletions

View file

@ -1 +1 @@
140
142

View file

@ -1,7 +0,0 @@
#[derive(PartialEq, Debug, Clone, Copy)]
pub enum State {
Starting,
Running,
Stopping,
Stopped,
}