Skip to content
Snippets Groups Projects
node_dummy.rs 197 B
Newer Older
use crate::optic_node::Optical;

/// A fake / dummy conponent without any functions. It is mainly used for development and debugging purposes.
pub struct NodeDummy;

impl Optical for NodeDummy {

}