1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! # 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;
pub mod generation;
mod prompt;
pub mod terminal;
mod utils;
pub mod validate;