Add base configuration #1

Merged
pierre merged 2 commits from feat-config into master 2023-04-27 15:51:08 +00:00
Showing only changes of commit 5885468ca4 - Show all commits

View File

@ -37,3 +37,14 @@ fn main() {
println!("Hello, world!");
}
#[cfg(test)]
mod test {
use crate::AppConfig;
#[test]
fn verify_cli() {
use clap::CommandFactory;
AppConfig::command().debug_assert();
}
}