mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-06 19:35:13 +02:00
Renamed file.rs to ast.rs to more accurately represent what that code does
This commit is contained in:
parent
bd788a8373
commit
16b469c16f
3 changed files with 2 additions and 2 deletions
|
|
@ -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>;
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ mod walk;
|
|||
mod database;
|
||||
mod patterns;
|
||||
mod errors;
|
||||
mod file;
|
||||
mod ast;
|
||||
|
||||
use crate::utils::Config;
|
||||
use cli::Cli;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue