added base thing

This commit is contained in:
Hazel Noack
2025-07-17 16:41:50 +02:00
parent 408e6cf944
commit c43a7cb154
6 changed files with 132 additions and 0 deletions

15
internal/data/song.go Normal file
View File

@@ -0,0 +1,15 @@
package data
type Song struct {
Id int
Name string
UnifiedName string
Isrc string
Genre string
Note string
Tracksort int
Artwork string
Sources []Source
}