generated from Patagia/template-nix
14 lines
228 B
Rust
14 lines
228 B
Rust
|
pub struct ControllerContext {}
|
||
|
|
||
|
impl ControllerContext {
|
||
|
pub fn new() -> ControllerContext {
|
||
|
ControllerContext {}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl Default for ControllerContext {
|
||
|
fn default() -> Self {
|
||
|
Self::new()
|
||
|
}
|
||
|
}
|