merge develop into master #20

Merged
michael-bailey merged 181 commits from develop into master 2023-12-01 21:48:28 +00:00
1 changed files with 8 additions and 0 deletions
Showing only changes of commit bb2e167ef1 - Show all commits

View File

@ -0,0 +1,8 @@
use std::sync::Arc;
type CreatePluginFn = dyn Fn() -> Arc<dyn Plugin>;
pub trait Plugin {
fn name(&self) -> String;
fn init(&self);
}