Modify the repository version to v0.1.0

This commit is contained in:
2025-11-21 17:43:37 +08:00
parent e9b8231327
commit 70ee50f4d8
19 changed files with 472 additions and 1835 deletions

View File

@@ -1,15 +0,0 @@
package main
// MusicItem represents a music item.
type MusicItem struct {
Title string `json:"title"`
Artist string `json:"artist"`
AudioURL string `json:"audio_url"`
AudioFullURL string `json:"audio_full_url"`
M3U8URL string `json:"m3u8_url"`
LyricURL string `json:"lyric_url"`
CoverURL string `json:"cover_url"`
Duration int `json:"duration"`
FromCache bool `json:"from_cache"`
IP string `json:"ip"`
}