use super::SunoClient;
use super::types::{Clip, ConcatRequest};
use crate::errors::CliError;
impl SunoClient {
pub async fn concat(&self, clip_id: &str) -> Result<Clip, CliError> {
let resp = self
.post("/api/generate/concat/v2/")
.json(&ConcatRequest {
clip_id: clip_id.to_string(),
})
.send()
.await?;
let resp = self.check_response(resp).await?;
Ok(resp.json().await?)
}
}