techscan 1.0.2

A tool for analyzing and visualizing technology stacks in codes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod app_config;
pub mod error;
pub mod file;
pub mod language;
pub mod language_report;
pub mod language_scanner_options;
pub mod result;

pub use app_config::AppConfig;
pub use error::TechScanError;
pub use file::File;
pub use language::Language;
pub use language_report::{LanguageReport, LanguageReportItem};
pub use language_scanner_options::LanguageScannerOptions;
pub use result::Result;