Create structure for songs and song_list

This commit is contained in:
2025-11-21 10:45:18 -05:00
parent b47f43f6e0
commit 067ce69c4b
5 changed files with 12 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ pub mod queue;
pub mod sidebar;
pub mod song;
pub mod song_list;
pub mod songs;
pub mod upload;
pub mod upload_dropdown;
@@ -38,6 +39,7 @@ pub mod all {
pub use song_list::{
SongAlbum, SongArtists, SongImage, SongLikeDislike, SongList, SongListExtra, SongListItem,
};
pub use songs::all::*;
pub use upload::{Album, Artist, Upload, UploadBtn};
pub use upload_dropdown::{UploadDropdown, UploadDropdownBtn};
}

View File

@@ -0,0 +1,7 @@
pub mod song;
pub mod song_list;
pub mod song_list_defaults;
pub mod all {
use super::*;
}

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1 @@