patagia-control/controller/src/context.rs

14 lines
228 B
Rust
Raw Normal View History

2024-12-11 21:12:24 +01:00
pub struct ControllerContext {}
impl ControllerContext {
pub fn new() -> ControllerContext {
ControllerContext {}
}
}
impl Default for ControllerContext {
fn default() -> Self {
Self::new()
}
}