mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
19 lines
301 B
Rust
19 lines
301 B
Rust
mod widget;
|
|
|
|
pub struct Bookmark {
|
|
widget: widget::Bookmark,
|
|
}
|
|
|
|
impl Bookmark {
|
|
// Construct
|
|
pub fn new() -> Bookmark {
|
|
Self {
|
|
widget: widget::Bookmark::new(),
|
|
}
|
|
}
|
|
|
|
// Getters
|
|
pub fn widget(&self) -> &widget::Bookmark {
|
|
&self.widget
|
|
}
|
|
}
|