suno-core 0.36.1

Engine for a download-only Suno.ai library tool: feed selection, sync reconciliation, and audio tagging.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Shared fixtures for the config submodule tests: an empty environment and
//! empty CLI flag overrides, the neutral baseline most precedence tests build on.

use std::collections::HashMap;

use super::FlagOverrides;

pub(super) fn no_env() -> HashMap<String, String> {
    HashMap::new()
}

pub(super) fn no_flags() -> FlagOverrides {
    FlagOverrides::default()
}