add features

This commit is contained in:
2026-07-29 04:35:25 -05:00
parent 23c6113b33
commit cab5a987b0
29 changed files with 1179 additions and 89 deletions
+5
View File
@@ -16,6 +16,7 @@ const (
Playlists
Tracks
Radios
Podcasts
)
func (p PageName) String() string {
@@ -44,6 +45,8 @@ func (p PageName) String() string {
return "All Tracks"
case Radios:
return "Internet Radio Stations"
case Podcasts:
return "Podcasts"
default:
return ""
}
@@ -102,6 +105,8 @@ func RadiosRoute() Route {
return Route{Page: Radios}
}
func PodcastsRoute() Route { return Route{Page: Podcasts} }
func NowPlayingRoute() Route {
return Route{Page: NowPlaying}
}