From ece6d19fc3a2636b9c4a74996ee27be708cec540 Mon Sep 17 00:00:00 2001 From: ecco257 <72117210+ecco257@users.noreply.github.com> Date: Fri, 5 Apr 2024 23:51:17 -0400 Subject: [PATCH] Remove SongData struct --- src/songdata.rs | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 src/songdata.rs diff --git a/src/songdata.rs b/src/songdata.rs deleted file mode 100644 index 7e0dd0c..0000000 --- a/src/songdata.rs +++ /dev/null @@ -1,16 +0,0 @@ -/// Holds information about a song -#[derive(Debug, Clone)] -pub struct SongData { - /// Song name - pub name: String, - /// Song artist - pub artist: String, - /// Song album - pub album: String, - /// Path to song file, relative to the root of the web server. - /// For example, `"/assets/audio/Song.mp3"` - pub song_path: String, - /// Path to song image, relative to the root of the web server. - /// For example, `"/assets/images/Song.jpg"` - pub image_path: String, -}