From 0972fa6eab8c9111311f082ba8abfdc6b4a40945 Mon Sep 17 00:00:00 2001 From: nil Date: Wed, 2 Oct 2024 17:48:56 +0200 Subject: commit changes --- rust/src/structs.rs | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 rust/src/structs.rs (limited to 'rust/src/structs.rs') diff --git a/rust/src/structs.rs b/rust/src/structs.rs deleted file mode 100644 index 7535bb4..0000000 --- a/rust/src/structs.rs +++ /dev/null @@ -1,35 +0,0 @@ -#[allow(dead_code)] -struct Song { - //song variables - id: i32, - title: String, - lyrics: String, - - //album variables - album_id: i32, - genres: Vec, - album_cover: String, - - //artist variables - artist_id: i32, - artist_name: String, -} - -#[allow(dead_code)] -struct Album { - id: i32, - title: String, - genres: Vec, - cover: String, - songs: Vec, -} - -#[allow(dead_code)] -struct Artist { - id: i32, - name: String, - genres: Vec, - albums: Vec, -} - -// lepht anonym -- cgit v1.2.3