From 2fe81d911ef7e4b312edfc4e8e38ad0fbd16311b Mon Sep 17 00:00:00 2001 From: Qingmu <31089228+StringKe@users.noreply.github.com> Date: Fri, 22 Mar 2024 11:21:42 +0800 Subject: [PATCH] throw internal implementations externally --- src/detectors/mod.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/detectors/mod.rs b/src/detectors/mod.rs index d1f1d8d..26ff2db 100644 --- a/src/detectors/mod.rs +++ b/src/detectors/mod.rs @@ -1,8 +1,8 @@ -mod classifier; -mod extensions; -mod filenames; -mod heuristics; -mod interpreters; +pub mod classifier; +pub mod extensions; +pub mod filenames; +pub mod heuristics; +pub mod interpreters; pub use classifier::classify; pub use extensions::{get_extension, get_languages_from_extension};