rs-suno 0.2.1

A download-only command-line tool for mirroring your Suno.ai library.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! The CLI layer: argument parsing, the sync/copy/check engine, output and log
//! rendering, and the individual command handlers.
//!
//! `suno-core` stays IO-free; everything that touches the network, the clock,
//! the filesystem, or the terminal lives here and drives the pure engine through
//! its ports.

pub mod args;
pub mod commands;
pub mod desired;
pub mod logs;
pub mod output;
pub mod run;