spotify-cli 0.5.0

A command-line interface for Spotify
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod fuzzy;
mod pin;
mod resource_type;
mod store;

pub use pin::Pin;
pub use resource_type::ResourceType;
pub use store::{PinError, PinStore};

use crate::constants::PINS_FILENAME;

/// Re-export for backward compatibility within this module.
pub(crate) const PINS_FILE: &str = PINS_FILENAME;