1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # Kickstart
//! `kickstart` is a CLI application that allows a user to quickly
//! get started on a project based on a template
//! It is also available as a library in case you want to integrate it in your own CLI
//! application.
//! See the [kickstart binary](https://github.com/Keats/kickstart/blob/master/src/bin/kickstart.rs)
//! for an example on how to use it.

mod definition;
pub mod errors;
mod filters;
pub mod generation;
mod prompt;
pub mod terminal;
mod utils;
pub mod validate;