Skip to main content

darklua_core/process/processors/
mod.rs

1//! A collection of utility processors that can be used when creating rules.
2
3mod collect_globals;
4mod find_identifier;
5mod find_usage;
6
7pub use collect_globals::*;
8pub use find_identifier::*;
9pub(crate) use find_usage::*;