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