aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/event_dispatcher.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/event_dispatcher.rs')
-rw-r--r--crates/shirabe/src/event_dispatcher.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/crates/shirabe/src/event_dispatcher.rs b/crates/shirabe/src/event_dispatcher.rs
new file mode 100644
index 0000000..a50fa4d
--- /dev/null
+++ b/crates/shirabe/src/event_dispatcher.rs
@@ -0,0 +1,10 @@
+pub mod event;
+#[allow(clippy::module_inception, reason = "to port PHP's structure as it is")]
+pub mod event_dispatcher;
+pub mod event_subscriber_interface;
+pub mod script_execution_exception;
+
+pub use event::*;
+pub use event_dispatcher::*;
+pub use event_subscriber_interface::*;
+pub use script_execution_exception::*;