mirror of
https://github.com/Dangoware/dango-music-player.git
synced 2025-04-19 10:02:53 -05:00
6 lines
175 B
Rust
6 lines
175 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!()
|
|
}
|