gitignore_template_generator/
lib.rs

1//! Components used to safely generate gitignore
2//! templates from a template generator API over HTTP.
3
4pub mod constant; // global constants
5mod core; // core api
6pub mod helper; // internal helper logic
7pub mod http_client; // http client to make api calls
8pub mod parser; // cli args parser
9pub mod validator; // cli args validators
10
11// exposed entities
12pub use core::*;