diff options
| author | tslil <tslil@posteo.de> | 2026-04-24 09:54:37 +0100 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-04-24 10:14:07 +0100 |
| commit | 7152f09f199f440e38263fdafb39b9eda71d7c53 (patch) | |
| tree | 4e4540ab802b80472115207535a0ccb4a92605a4 /src/main.rs | |
| parent | 85f0f5bd9ba573ad288ed582399b37e126f598c9 (diff) | |
refactor: separate checker into _state, _set, and principle export
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index f7ad1c1..df36027 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,6 +1,8 @@ mod ast; +mod check_state; mod checker; mod parser; +mod set_checker; use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt}; use tracing_tree::HierarchicalLayer; |
