From 0972fa6eab8c9111311f082ba8abfdc6b4a40945 Mon Sep 17 00:00:00 2001 From: nil Date: Wed, 2 Oct 2024 17:48:56 +0200 Subject: commit changes --- scripts/populate/structures.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 scripts/populate/structures.py (limited to 'scripts/populate/structures.py') diff --git a/scripts/populate/structures.py b/scripts/populate/structures.py new file mode 100644 index 0000000..31feb1b --- /dev/null +++ b/scripts/populate/structures.py @@ -0,0 +1,13 @@ +class song: + def __init__(self, name, lyrics): + self.name = name + self.lyrics = lyrics + + +class album: + def __init__(self, name, cover, songs, artist_id, release=None): + self.name = name + self.cover = cover + self.songs = songs + self.artist = artist_id + self.release = release -- cgit v1.2.3