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:
parent
58e1197ff4
commit
ee01746956
2 changed files with 1 additions and 8 deletions
|
|
@ -1 +1 @@
|
|||
140
|
||||
142
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
#[derive(PartialEq, Debug, Clone, Copy)]
|
||||
pub enum State {
|
||||
Starting,
|
||||
Running,
|
||||
Stopping,
|
||||
Stopped,
|
||||
}
|
||||
Loading…
Reference in a new issue