From 53f1fb395f33e0fb8db9aebd09ea9082f650f9f1 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 28 Jun 2026 17:45:06 +0900 Subject: refactor: add linter --- crates/shirabe/src/event_dispatcher.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 crates/shirabe/src/event_dispatcher.rs (limited to 'crates/shirabe/src/event_dispatcher.rs') 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::*; -- cgit v1.3.1