mirror of
https://github.com/Dangoware/dango-music-player.git
synced 2025-04-19 18:12:54 -05:00
6 lines
178 B
Rust
6 lines
178 B
Rust
use crate::music_controller::config::Config;
|
|
use std::path::Path;
|
|
|
|
pub fn playlist_add(_config: &Config, _playlist_name: &str, _song_paths: &Vec<&Path>) {
|
|
unimplemented!()
|
|
}
|