tell the user album was created
This commit is contained in:
parent
d097116c37
commit
da8824a368
1 changed files with 4 additions and 1 deletions
|
@ -8,7 +8,10 @@ fn main() -> anyhow::Result<()> {
|
||||||
let album_path = Path::new(&cli.album_path);
|
let album_path = Path::new(&cli.album_path);
|
||||||
|
|
||||||
match cli.subcommand {
|
match cli.subcommand {
|
||||||
Commands::Init {} => make_skeleton(album_path)?,
|
Commands::Init {} => {
|
||||||
|
make_skeleton(album_path)?;
|
||||||
|
println!("Album created in {}", album_path.display());
|
||||||
|
}
|
||||||
Commands::Generate { quick } => {
|
Commands::Generate { quick } => {
|
||||||
println!("Generate, quick: {quick}");
|
println!("Generate, quick: {quick}");
|
||||||
todo!()
|
todo!()
|
||||||
|
|
Loading…
Add table
Reference in a new issue