From 73c8fd2634df0b106d4101729d48dc04c2e2c842 Mon Sep 17 00:00:00 2001 From: phoenix Date: Sat, 11 Oct 2025 14:17:32 -0400 Subject: [PATCH] Tweaked some changes --- src/song.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/song.rs b/src/song.rs index 107e547..25aef4d 100644 --- a/src/song.rs +++ b/src/song.rs @@ -90,6 +90,7 @@ impl Song { } } + // TODO: Make this available as a function pub fn to_data(&self) -> Result, std::io::Error> { let path_result = self.song_path(); @@ -109,6 +110,7 @@ impl Song { } } + // TODO: Make this available as a function pub fn generate_filename(&self, typ: types::MusicTypes, randomize: bool) -> String { let mut filename: String = String::new(); let filename_len = 10;