ouverture-core 0.1.0

A next-generation music player and manager library
Documentation
1
2
3
4
5
6
use super::song::Song;

#[derive(Clone)]
pub struct Playlist {
    songs: Vec<Song>,
}