shithub
tenseleyflow
/
hyprkvm
/
Sign in
Sign up
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
hyprkvm
Public
Watch
0
Fork
0
Star
0
hyprkvm
/
hyprkvm-daemon
/
src
/
state
/
mod.rs
Rust · 184 bytes
Raw
Blame
History
1
//! State management module
2
//!
3
//! Maintains the unified state of the daemon.
4
5
pub
mod
manager
;
6
7
pub
use
manager
::
{
ControlState
,
EdgeTrigger
,
NeighborInfo
,
StateError
,
StateManager
};
8