1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
// DOCS

extern crate regex;
extern crate toml;
extern crate time;

#[macro_use]
mod macros;
pub mod git;
pub mod fmt;
mod sectionmap;
mod clog;
pub mod error;
mod link_style;

pub use clog::Clog;
pub use sectionmap::SectionMap;
pub use link_style::LinkStyle;

// The default config file
const CLOG_CONFIG_FILE: &'static str = ".clog.toml";