ebg 0.7.0

Eric's Blog Generator, a simple static site generator.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Code for implementing the command line interface to EBG.

pub mod about;
pub mod build;
pub mod list;
pub mod new_post;
pub mod wayback;

/// Describes a command that can be run from the command line.
///
/// This is normally implemented on the arguments struct.
pub trait Command {
    fn run(self) -> miette::Result<()>;
}