guillotine_ui/
lib.rs

1#[derive(Debug, Default)]
2pub struct GuillotineUi;
3
4impl GuillotineUi {
5    /// Construct a placeholder value.
6    pub fn new() -> Self {
7        GuillotineUi
8    }
9}