Skip to content

Commit

Permalink
Add documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
quambene committed Apr 3, 2024
1 parent 8091a03 commit 6e39ba3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
/*
Pigeon is a command line tool for automating your email workflow.
*/

/// The supported arguments.
pub mod arg;
/// The supported subcommands.
pub mod cmd;
mod email_builder;
mod email_formatter;
Expand All @@ -10,6 +16,7 @@ mod utils;
use arg::val;
use clap::{crate_name, crate_version, App, Arg, SubCommand};

/// Create the CLI app to get the matches.
pub fn app() -> App<'static, 'static> {
App::new(crate_name!())
.version(crate_version!())
Expand Down

0 comments on commit 6e39ba3

Please sign in to comment.