From 8c4de2ddac066a072f376e9f30409b114aa9978c Mon Sep 17 00:00:00 2001 From: niliara-edu Date: Thu, 23 Jan 2025 23:28:01 +0100 Subject: finished jws tutorial --- src/structs.rs | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 src/structs.rs (limited to 'src/structs.rs') diff --git a/src/structs.rs b/src/structs.rs deleted file mode 100644 index 7535bb4..0000000 --- a/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