gitignore-template-generator 0.4.8

A binary crate to generate templates for .gitignore files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Components used to safely generate gitignore
//! templates from a template generator API over HTTP.

pub mod constant;
mod core;
pub mod helper;
pub mod http_client;
pub mod parser;
pub mod validator;

// exposed entities
pub use core::*;