Renamed file.rs to ast.rs to more accurately represent what that code does

This commit is contained in:
elipeter 2025-06-24 17:56:26 +02:00
parent bd788a8373
commit 16b469c16f
3 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ use rayon::prelude::*;
use std::collections::BTreeMap;
use dashmap::DashMap;
use crate::errors::NyxResult;
pub(crate) use crate::file::run_rules_on_file;
pub(crate) use crate::ast::run_rules_on_file;
type DynError = Box<dyn std::error::Error + Send + Sync>;

View file

@ -5,7 +5,7 @@ mod walk;
mod database;
mod patterns;
mod errors;
mod file;
mod ast;
use crate::utils::Config;
use cli::Cli;