patagia-control/controller/src/context.rs
Daniel Lundin 3924990d53
Some checks failed
ci/woodpecker/push/ci Pipeline failed
Add OpenAPI generation xtask
2024-12-14 17:18:03 +01:00

13 lines
228 B
Rust

pub struct ControllerContext {}
impl ControllerContext {
pub fn new() -> ControllerContext {
ControllerContext {}
}
}
impl Default for ControllerContext {
fn default() -> Self {
Self::new()
}
}