separate playlist generation

This commit is contained in:
Aaron Manning
2025-09-01 09:42:15 +10:00
parent 07b43ba2dc
commit 2b55c5b0af
4 changed files with 98 additions and 12 deletions

View File

@@ -42,9 +42,15 @@ pub(crate) enum Command {
#[arg(long, short)]
podcast: String,
},
/// Tags files and generates playlists ready for use with an iPod.
/// Tags files for use with an iPod, such that they don't show up in albums and artists.
Tag {
/// The podcast to tag and generate playlists for.
/// The podcast to tag.
#[arg(long, short)]
podcast: Option<String>,
},
/// Generates playlist for use with an iPod.
Playlist {
/// The podcast to generate the playlist for.
#[arg(long, short)]
podcast: Option<String>,
},