main: make bandcamp command use bandcamp library to avoid panics

This commit is contained in:
2026-06-05 12:22:36 +02:00
parent 39973c333c
commit 17903f1ac9
2 changed files with 11 additions and 10 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ struct BandcampQueryArgs {
}
#[derive(Debug, Serialize, Deserialize, Clone)]
enum BandcampResult {
pub enum BandcampResult {
Artist { name: String, bio: Option<String>, location: Option<String> },
Album { title: String, about: Option<String>, credits: Option<String>, release_date: DateTime<Utc>, artist: String }
}