rs-suno 0.2.0

A download-only command-line tool for mirroring your Suno.ai library.
1
2
3
4
5
6
7
8
9
10
//! The non-engine command handlers: listing, single-clip fetch, config and auth
//! management, version reporting, and shell completions. The sync/copy/check
//! engine lives in [`crate::cli::run`].

pub mod auth;
pub mod completions;
pub mod config;
pub mod fetch;
pub mod ls;
pub mod version;