Skip to main content

pebble/
plugin.rs

1use crate::app::App;
2
3pub trait Plugin: 'static {
4    fn build(&self, app: &mut App);
5}