aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/plugin.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-06-28 17:45:06 +0900
committernsfisis <nsfisis@gmail.com>2026-06-28 17:45:26 +0900
commit53f1fb395f33e0fb8db9aebd09ea9082f650f9f1 (patch)
treef9e8bf0e9d4b1e98cce383574fb6a13b684fff08 /crates/shirabe/src/plugin.rs
parent212f5cd75b1403ee75ffa44d7ebdb181174340c0 (diff)
downloadphp-shirabe-53f1fb395f33e0fb8db9aebd09ea9082f650f9f1.tar.gz
php-shirabe-53f1fb395f33e0fb8db9aebd09ea9082f650f9f1.tar.zst
php-shirabe-53f1fb395f33e0fb8db9aebd09ea9082f650f9f1.zip
refactor: add linter
Diffstat (limited to 'crates/shirabe/src/plugin.rs')
-rw-r--r--crates/shirabe/src/plugin.rs23
1 files changed, 23 insertions, 0 deletions
diff --git a/crates/shirabe/src/plugin.rs b/crates/shirabe/src/plugin.rs
new file mode 100644
index 0000000..a26e117
--- /dev/null
+++ b/crates/shirabe/src/plugin.rs
@@ -0,0 +1,23 @@
+pub mod capability;
+pub mod capable;
+pub mod command_event;
+pub mod plugin_blocked_exception;
+pub mod plugin_events;
+pub mod plugin_interface;
+pub mod plugin_manager;
+pub mod post_file_download_event;
+pub mod pre_command_run_event;
+pub mod pre_file_download_event;
+pub mod pre_pool_create_event;
+
+pub use capability::*;
+pub use capable::*;
+pub use command_event::*;
+pub use plugin_blocked_exception::*;
+pub use plugin_events::*;
+pub use plugin_interface::*;
+pub use plugin_manager::*;
+pub use post_file_download_event::*;
+pub use pre_command_run_event::*;
+pub use pre_file_download_event::*;
+pub use pre_pool_create_event::*;