src: split out conversation and archive bits into separate modules

This commit is contained in:
2026-06-09 19:30:40 +02:00
parent 7f2dd6f8b2
commit eeb27656c7
6 changed files with 105 additions and 82 deletions
+6
View File
@@ -1,4 +1,5 @@
use chrono::{DateTime, Utc};
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
@@ -42,4 +43,9 @@ impl Into<Artifact> for bandcamp::Artist {
fn into(self) -> Artifact {
Artifact::Bandcamp(self.into())
}
}
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema)]
pub struct BandcampQueryArgs {
pub query: String
}