Skip to content

Commit 413c841

Browse files
committed
refactor(core): also make file_utils module private
Address review feedback from gemini-code-assist: file_utils is an internal utility not used by external consumers, so it should be private alongside parsers, rules, and schemas.
1 parent c3692a0 commit 413c841

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Changed
1111
- Narrowed agnix-core public API surface (#85)
12-
- Made `parsers`, `rules`, and `schemas` modules private
12+
- Made `parsers`, `rules`, `schemas`, and `file_utils` modules private
1313
- Re-exported `Validator` trait for custom validator implementations
1414
- No breaking changes for agnix-cli or external consumers using documented API
1515

crates/agnix-core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
1313
pub mod config;
1414
pub mod diagnostics;
15-
pub mod file_utils;
15+
mod file_utils;
1616
pub mod fixes;
1717
mod parsers;
1818
mod rules;

0 commit comments

Comments
 (0)