Modify playstatus to keep track of queue status and derive Clone for songdata

This commit is contained in:
2024-02-02 17:17:16 -05:00
parent 7ed5561262
commit c924b5613f
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,5 @@
/// Holds information about a song
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct SongData {
/// Song name
pub name: String,