5 lines
79 B
Rust
5 lines
79 B
Rust
use super::app::App;
|
|
|
|
pub trait Plugin {
|
|
fn build(&self, app: &mut App);
|
|
}
|